| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #15677: Document that zlib and gzip accept a compression level of 0 to ... | Nadeem Vawda | 2012-11-11 | 1 | -2/+2 |
|\ |
|
| * | Issue #15677: Document that zlib and gzip accept a compression level of 0 to ... | Nadeem Vawda | 2012-11-11 | 1 | -3/+3 |
|
|
* | | Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to acces... | Nadeem Vawda | 2012-11-11 | 1 | -0/+2 |
|\ \
| |/ |
|
| * | Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to acces... | Nadeem Vawda | 2012-11-11 | 1 | -0/+2 |
|
|
* | | Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in deco... | Nadeem Vawda | 2012-11-11 | 1 | -44/+54 |
|\ \
| |/ |
|
| * | Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in deco... | Nadeem Vawda | 2012-11-11 | 1 | -45/+55 |
|
|
* | | Issue #16350: Fix zlib decompressor handling of unused_data with multiple cal... | Nadeem Vawda | 2012-11-04 | 1 | -6/+23 |
|\ \
| |/ |
|
| * | Issue #16350: Fix zlib decompressor handling of unused_data with multiple cal... | Nadeem Vawda | 2012-11-04 | 1 | -6/+23 |
|
|
* | | Document the rest of zlib.compressobj()'s arguments. | Nadeem Vawda | 2012-06-21 | 1 | -4/+17 |
|
|
* | | Tidy up comments from dd4f7d5c51c7 (zlib compression dictionary support). | Nadeem Vawda | 2012-06-21 | 1 | -1/+1 |
|
|
* | | Issue #14684: Add support for predefined compression dictionaries to the zlib... | Nadeem Vawda | 2012-06-21 | 1 | -22/+96 |
|
|
* | | Issue #12306: Add ZLIB_RUNTIME_VERSION to the zlib module. | Nadeem Vawda | 2011-09-11 | 1 | -0/+4 |
|
|
* | | Merge: #12839: Fix crash in zlib module due to version mismatch. | Nadeem Vawda | 2011-08-28 | 1 | -1/+7 |
|\ \
| |/ |
|
| * | Issue #12839: Fix crash in zlib module due to version mismatch. | Nadeem Vawda | 2011-08-28 | 1 | -1/+7 |
|
|
* | | Fix incorrect comment in zlib.Decompress.flush(). | Nadeem Vawda | 2011-08-13 | 1 | -3/+1 |
|
|
* | | Issue #12646: Add an 'eof' attribute to zlib.Decompress. | Nadeem Vawda | 2011-08-13 | 1 | -6/+13 |
|/ |
|
* | Issue #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean. | Nadeem Vawda | 2011-05-14 | 1 | -14/+23 |
|
|
* | Issue #8650: Backport 64-bit safety fixes for compress() and decompress(). | Nadeem Vawda | 2011-05-14 | 1 | -10/+21 |
|
|
* | Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail | Nadeem Vawda | 2011-05-14 | 1 | -7/+12 |
|
|
* | Merged revisions 88460,88464,88466,88486,88511,88652 via svnmerge from | Antoine Pitrou | 2011-02-28 | 1 | -2/+22 |
|
|
* | Merged revisions 81100 via svnmerge from | Antoine Pitrou | 2010-05-11 | 1 | -4/+17 |
|
|
* | Recorded merge of revisions 81032 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -231/+231 |
|
|
* | Merged revisions 80928 via svnmerge from | Antoine Pitrou | 2010-05-07 | 1 | -3/+4 |
|
|
* | Merged revisions 76836 via svnmerge from | Antoine Pitrou | 2009-12-14 | 1 | -8/+8 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -2/+2 |
|
|
* | Issue #4738: finer-grained locking in the zlib module. | Antoine Pitrou | 2009-01-02 | 1 | -61/+63 |
|
|
* | Fixes release blocker issue #3492 and #3790. | Gregory P. Smith | 2008-09-06 | 1 | -31/+31 |
|
|
* | Merged revisions 65654 via svnmerge from | Martin v. Löwis | 2008-08-13 | 1 | -14/+39 |
|
|
* | #3247 Get rid of Py_FindMethod; use tp_members instead. | Amaury Forgeot d'Arc | 2008-07-02 | 1 | -33/+44 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -5/+15 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -31/+31 |
|
|
* | Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-... | Christian Heimes | 2008-04-09 | 1 | -0/+4 |
|
|
* | Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,... | Christian Heimes | 2008-03-25 | 1 | -5/+6 |
|
|
* | Merged revisions 61820-61823 via svnmerge from | Christian Heimes | 2008-03-24 | 1 | -2/+2 |
|
|
* | crc32 always returns unsigned. cleanup the code a bit and revert r61648 with | Gregory P. Smith | 2008-03-20 | 1 | -6/+6 |
|
|
* | Create a signed CRC32 hash. I'm not absolutely sure it's correct. At least it... | Christian Heimes | 2008-03-19 | 1 | -1/+1 |
|
|
* | zlib.crc32 and zlib.adler32 now return an unsigned value as any sane person | Gregory P. Smith | 2008-03-17 | 1 | -2/+2 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -2/+2 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -2/+2 |
|
|
* | Merged revisions 59077-59104 via svnmerge from | Guido van Rossum | 2007-11-22 | 1 | -2/+3 |
|
|
* | Convert a bunch of constant strings in C to unicode. | Neal Norwitz | 2007-08-23 | 1 | -1/+1 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -6/+4 |
|
|
* | zlib now uses bytes everywhere, and the test passes. | Guido van Rossum | 2007-05-22 | 1 | -36/+62 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -0/+6 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -0/+106 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -1/+3 |
|
|
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
|
|
* | [Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and bu... | Andrew M. Kuchling | 2005-11-22 | 1 | -2/+2 |
|
|
* | [Bug #1083110] calling .flush() on decompress objects causes a segfault due t... | Andrew M. Kuchling | 2004-12-28 | 1 | -1/+5 |
|
|
* | - Thanks to Scott David Daniels, a subtle bug in how the zlib | Guido van Rossum | 2003-02-03 | 1 | -12/+45 |
|
|