- 14 Agu, 1997 36 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Jeremy Hylton yazdı
-- initialize length to DEFAULTALLOC and not 0 -- resize string before returning (to remove '\000' padding) Also converted some compression routines to use PyString instead of buffer.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
ExitThread(). As discussed in c.l.p, this takes care of initialization and finalization of thread-local storage allocated by the C runtime system. Not sure whether non-MS compilers grok this though (but who cares :-).
-
Guido van Rossum yazdı
__import__() hook is currently installed.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
usable createfilehandler). Define HAVE_CREATEFILEHANDLER to test later. Also other Mac specific patches by Jack.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
added some caveats.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
installed version.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
status from main() and call sys.exit(main()) in the startup stub at the end of the file.
-
Guido van Rossum yazdı
bugginess has been fixed.
-
Guido van Rossum yazdı
different in a future version.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
0.3 won't break on Windows.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
mime_encode_header().
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 13 Agu, 1997 4 kayıt (commit)
-
-
Jeremy Hylton yazdı
Change default alloc size for uncompressing to 16K. Remove comment about core dumps when an invalid window sizes is used. This bug has been fixed in zlib 1.0.4. Two new optional arguments to decompress, wbits and bufsize. wbits specifies the window size and bufsize specifies the initial output string size. In decompression code -- decompress and decompressobj methods -- use a Python string (and _PyString_Resize) to collect the uncompressed stream. Replaces a separate buffer that was copied into a string. Fix bug in decompress that caused it to always realloc the buffer when it was finished decompressing. Modernized handling of optional arguments to compressobj. Updated doc strings.
-
Guido van Rossum yazdı
After this I will be using 5.0, which has binary workspace files...
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-