Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added (binaryfunc) casts to function pointers in method lists. | Guido van Rossum | 1997-08-28 | 1 | -4/+4 |
| | |||||
* | Casts by Jack to shut up the Mac compiler. | Guido van Rossum | 1997-08-18 | 1 | -9/+9 |
| | |||||
* | Several bug fixes. | Jeremy Hylton | 1997-08-14 | 1 | -52/+70 |
| | | | | | | | | -- 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. | ||||
* | Many changes. | Jeremy Hylton | 1997-08-13 | 1 | -98/+82 |
| | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Must update the available space in the output buffer after | Jeremy Hylton | 1997-08-13 | 1 | -0/+3 |
| | | | | realloc. (Fixed in PyZlib_unflush.) | ||||
* | Small changes (casts etc.) by Jack, for Mac compilation. | Guido van Rossum | 1997-06-03 | 1 | -12/+16 |
| | |||||
* | Doc strings (AMK). | Guido van Rossum | 1997-06-03 | 1 | -11/+88 |
| | |||||
* | Added Andrew Kuchling's zlib module. | Guido van Rossum | 1997-04-29 | 1 | -0/+670 |