Skip Montanaro
f8712e5fc3
Remove support for systems defining __d6_pthread_create.
2004-01-17 03:04:46 +00:00
Skip Montanaro
4d474becd8
remove DGUX support.
2004-01-17 00:29:32 +00:00
Skip Montanaro
b9820a3b77
Remove support for minix.
...
Remove unused and unnecessary checks for sizeof(char).
2004-01-17 00:16:12 +00:00
Fred Drake
621b443b8d
- add warning that hotshot doesn't work well with threads
...
- fix some markup
2004-01-16 17:30:16 +00:00
Fred Drake
990a46b732
minor markup improvements
2004-01-16 16:07:04 +00:00
Andrew M. Kuchling
8135fd5365
Make parameter names in docstring more mnemonic
2004-01-16 13:18:42 +00:00
Fred Drake
4977ff0cf5
add a note about memory consumption and LaTeX
...
closes SF bug #721157
2004-01-13 23:56:03 +00:00
Fred Drake
3f26af765d
- add comment about $CUSTOM_BUTTONS
...
- use_icon(): fix the check for whether a supplemental link is being
used
2004-01-13 23:43:58 +00:00
Fred Drake
3bbd115735
markup changes
2004-01-13 23:41:32 +00:00
Gregory P. Smith
e33aef7b15
__init__.py: keep it compatible with older python (True and False == 1 and 0)
...
test_basics.py: updated for the set_get_returns_none() default of 2 change.
2004-01-13 19:59:57 +00:00
Raymond Hettinger
2fb702966c
SF Patch #871704 : Py_SequenceFast can mask errors
...
(Contributed by Greg Chapman.)
Since this only changes the error message, I doubt that it should be
backported.
2004-01-11 23:26:51 +00:00
Andrew M. Kuchling
44a98237d8
[Bug #873205 ] Update URL
2004-01-11 23:00:16 +00:00
Jack Jansen
69387e19ef
More cases of input parameters passed by reference without const.
2004-01-11 22:52:12 +00:00
Jack Jansen
ae57b7f843
Added support for APIs in QuickTimeMusic.h. This one is a bit dodgy:
...
the header file seems to be hand-written and missing the "const" keywords
for input parameters passed by reference.
2004-01-11 22:27:42 +00:00
Sjoerd Mullender
7e6bbe1516
The format of the string data used in the imageop module is described
...
as "This is the same format as used by gl.lrectwrite() and the imgfile
module." This implies a certain byte order in multi-byte pixel
formats. However, the code was originally written on an SGI
(big-endian) and *uses* the fact that bytes are stored in a particular
order in ints. This means that the code uses and produces different
byte order on little-endian systems.
This fix adds a module-level flag "backward_compatible" (default not
set, and if not set, behaves as if set to 1--i.e. backward compatible)
that can be used on a little-endian system to use the same byte order
as the SGI. Using this flag it is then possible to prepare
SGI-compatible images on a little-endian system.
This patch is the result of a (small) discussion on python-dev and was
submitted to SourceForge as patch #874358 .
2004-01-10 20:43:43 +00:00
Jack Jansen
2e5e6445e7
Added support for APIs in MediaHandlers.h.
2004-01-09 23:18:47 +00:00
Jeremy Hylton
73b3df9a35
Update Windows build to use zlib 1.2.1
2004-01-09 16:05:07 +00:00
Andrew M. Kuchling
c62af02ced
Fix some digicool addresses I noticed
2004-01-08 15:01:08 +00:00
Fred Drake
115147921c
add link to the red-dove.com page about the logging package
2004-01-08 14:59:02 +00:00
Fred Drake
4f687b3051
add new reference macro: \seelink
2004-01-08 14:57:27 +00:00
Raymond Hettinger
91f5cbe264
SF bug #872461 : list.extend() described as experimental
2004-01-08 00:31:50 +00:00
Barry Warsaw
8f799e4c3a
__all__: Remove freenet_b64encode and freenet_b64decode.
2004-01-07 22:32:12 +00:00
Thomas Heller
d2afa67755
Add the _bisectmodule.c source file to the pythoncore project - seems to have been forgotten.
2004-01-06 19:27:38 +00:00
Mark Hammond
2362da8712
Update information about building bsddb, particularly re with and without
...
strong crypto.
2004-01-06 04:04:01 +00:00
Raymond Hettinger
0c4102760c
SF Patch #864863 : Bisect C implementation
...
(Contributed by Dmitry Vasiliev.)
2004-01-05 10:13:35 +00:00
Raymond Hettinger
23a0f4ed21
Small correction to example
2004-01-05 08:15:20 +00:00
Raymond Hettinger
97ef8de92d
* Add various updates reflecting the last two weeks of checkins:
...
timeit, base64, MSVC++ 7.1 build, METH_COEXISTS, and optimizations.
* Put in a comment suggesting an improvement to the rsplit() example.
2004-01-05 00:29:57 +00:00
Hye-Shik Chang
75c00efcc7
[SF #866875 ] Add a specialized routine for one character
...
separaters on str.split() and str.rsplit().
2004-01-05 00:29:51 +00:00
Jack Jansen
cb2117a83c
Allow passing NULL pointers by passing None. This also works for the
...
factory functions, so you can call quicktime functions that are implemented
as methods on NULL too.
Still don't allow quicktime functions to return NULL pointers, though: I
think this always signals an error condition.
2004-01-04 22:33:33 +00:00
Raymond Hettinger
c14149e6ef
Show how to re-enable GC during timings.
2004-01-04 21:19:18 +00:00
Hye-Shik Chang
2b2c97356f
FIx unicodefilename support of posix.uname(). This fixes test_unicode_file
...
failure on FreeBSD.
2004-01-04 13:54:25 +00:00
Raymond Hettinger
d73ef06cd3
Exercise sorted() where possible
2004-01-04 11:14:51 +00:00
Raymond Hettinger
b86269db45
Apply pre-sizing optimization to a broader class of objects.
...
Formerly, the length was only fetched from sequence objects.
Now, any object that reports its length can benefit from pre-sizing.
2004-01-04 11:00:08 +00:00
Martin v. Löwis
4618cc09ec
Bump build number
2004-01-04 09:58:33 +00:00
Raymond Hettinger
77f3c87113
Apply map/zip pre-sizing optimization to a broader class of objects.
...
Formerly, the length was only fetched from sequence objects.
Now, any object that reports its length can benefit from pre-sizing.
2004-01-04 08:54:44 +00:00
Raymond Hettinger
7832cd6141
Apply tuple/list pre-sizing optimization to a broader class of objects.
...
Formerly, length data fetched from sequence objects.
Now, any object that reports its length can benefit from pre-sizing.
On one sample timing, it gave a threefold speedup for list(s) where s
was a set object.
2004-01-04 06:08:16 +00:00
Raymond Hettinger
674d56b82e
Convert return value to boolean.
2004-01-04 04:00:13 +00:00
Raymond Hettinger
816ed1b0bd
SF patch #868736 : Disable GC for timeit
...
Make timings more consistent by temporarily disabling GC.
2004-01-04 03:47:51 +00:00
Raymond Hettinger
4cd5a08d8b
Fix small factual error.
2004-01-04 03:11:45 +00:00
Tim Peters
71745802ec
Update to record .pyd files removed for Python 2.4.
2004-01-04 03:00:51 +00:00
Tim Peters
12cfa6d662
That's it -- works as well under VC6 as it ever did now.
2004-01-04 02:51:36 +00:00
Tim Peters
055844ea80
The _tkinter subproject works with VC6 again.
2004-01-04 02:32:53 +00:00
Tim Peters
590de2c20c
The bz2 subproject works with VC6 again.
2004-01-04 02:30:49 +00:00
Tim Peters
f32b0271a9
The _ssl subproject may <heh> be working w/ VC6 again.
2004-01-04 02:27:33 +00:00
Tim Peters
c844a03edf
The _bsddb subproject works again under VC6.
2004-01-04 02:12:55 +00:00
Tim Peters
caba60a752
Removed dead text about MS subprojects that no longer exist.
2004-01-04 02:04:35 +00:00
Tim Peters
28df74fc62
Getting closer (but not yet there) to being able to compile under VC6
...
again. Removed the following subprojects and folded them into pythoncore,
to match what's being done under VC7. We *can* build the core DLL
under VC6 again after this:
datetime.dsp
winreg.dsp
parser.dsp
_sre.dsp
_csv.dsp
mmap.dsp
_symtable.dsp
2004-01-04 02:00:47 +00:00
Barry Warsaw
ad9aaeea6d
Documentation for new RFC 3548 functions.
2004-01-04 01:14:01 +00:00
Barry Warsaw
30ff12ffc2
Add note about new base64.py module support for RFC 3548.
2004-01-04 01:13:43 +00:00
Barry Warsaw
4f019d3b47
More complete code coverage, including testing the new RFC 3548 support.
2004-01-04 01:13:02 +00:00