summaryrefslogtreecommitdiff
path: root/Modules/zlibmodule.c
Commit message (Expand)AuthorAgeFilesLines
...
* | Issue #19674: inspect.signature() now produces a correct signatureLarry Hastings2013-11-231-8/+9
* | Issue #19730: Argument Clinic now supports all the existing PyArgLarry Hastings2013-11-231-23/+77
* | Close #18294: Fix the zlib module to make it 64-bit safeVictor Stinner2013-11-211-55/+125
* | Argument Clinic: rename "self" to "module" for module-level functions.Larry Hastings2013-11-181-19/+21
* | Issue #16612: Add "Argument Clinic", a compile-time preprocessorLarry Hastings2013-10-191-61/+122
* | Issue #18408: Fix usage of _PyBytes_Resize()Victor Stinner2013-07-091-16/+8
* | Issue #18408: Fix zlib.compressobj() to handle PyThread_allocate_lock() failureVictor Stinner2013-07-091-0/+4
* | Issue #18227: "Free" function of bz2, lzma and zlib modules has no return val...Victor Stinner2013-07-071-1/+1
* | Issue #18227: Use PyMem_RawAlloc() in bz2, lzma and zlib modulesVictor Stinner2013-07-071-8/+28
* | Issue #18203: Replace malloc() with PyMem_Malloc() in Python modulesVictor Stinner2013-07-071-2/+2
* | Issue #9566: zlib: Explicit cast to unsigned int to fix a compiler warning on...Victor Stinner2013-06-241-4/+4
* | Issue #17917: Use PyModule_AddIntMacro() instead of PyModule_AddIntConstant()Charles-Francois Natali2013-05-201-14/+14
* | zlib: Explicit cast to fix a compiler warningVictor Stinner2013-05-071-1/+1
* | Issue #15677: Document that zlib and gzip accept a compression level of 0 to ...Nadeem Vawda2012-11-111-2/+2
|\ \ | |/
| * Issue #15677: Document that zlib and gzip accept a compression level of 0 to ...Nadeem Vawda2012-11-111-2/+2
| |\
| | * Issue #15677: Document that zlib and gzip accept a compression level of 0 to ...Nadeem Vawda2012-11-111-3/+3
* | | Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to acces...Nadeem Vawda2012-11-111-0/+2
|\ \ \ | |/ /
| * | Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to acces...Nadeem Vawda2012-11-111-0/+2
| |\ \ | | |/
| | * Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to acces...Nadeem Vawda2012-11-111-0/+2
* | | Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in deco...Nadeem Vawda2012-11-111-44/+54
|\ \ \ | |/ /
| * | Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in deco...Nadeem Vawda2012-11-111-44/+54
| |\ \ | | |/
| | * Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in deco...Nadeem Vawda2012-11-111-45/+55
* | | Issue #16350: Fix zlib decompressor handling of unused_data with multiple cal...Nadeem Vawda2012-11-051-6/+23
|\ \ \ | |/ /
| * | Issue #16350: Fix zlib decompressor handling of unused_data with multiple cal...Nadeem Vawda2012-11-051-6/+23
| |\ \ | | |/
| | * Issue #16350: Fix zlib decompressor handling of unused_data with multiple cal...Nadeem Vawda2012-11-051-6/+23
* | | Issue #9566: Explicit downcast to fix compiler warnings on Win64Victor Stinner2012-10-311-2/+2
|/ /
* | Document the rest of zlib.compressobj()'s arguments.Nadeem Vawda2012-06-221-4/+17
* | Tidy up comments from dd4f7d5c51c7 (zlib compression dictionary support).Nadeem Vawda2012-06-221-1/+1
* | Issue #14684: Add support for predefined compression dictionaries to the zlib...Nadeem Vawda2012-06-211-22/+96
* | Issue #12306: Add ZLIB_RUNTIME_VERSION to the zlib module.Nadeem Vawda2011-09-121-0/+4
* | Merge: #12839: Fix crash in zlib module due to version mismatch.Nadeem Vawda2011-08-281-1/+7
|\ \ | |/
| * Issue #12839: Fix crash in zlib module due to version mismatch.Nadeem Vawda2011-08-281-1/+7
* | Fix incorrect comment in zlib.Decompress.flush().Nadeem Vawda2011-08-131-3/+1
* | Issue #12646: Add an 'eof' attribute to zlib.Decompress.Nadeem Vawda2011-08-131-6/+13
|/
* Issue #8650: Make zlib.[de]compressobj().[de]compress() 64-bit clean.Nadeem Vawda2011-05-151-14/+23
* Issue #8650: Backport 64-bit safety fixes for compress() and decompress().Nadeem Vawda2011-05-141-10/+21
* Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tailNadeem Vawda2011-05-141-7/+12
* Merged revisions 88460,88464,88466,88486,88511,88652 via svnmerge fromAntoine Pitrou2011-02-281-2/+22
* Merged revisions 81100 via svnmerge fromAntoine Pitrou2010-05-111-4/+17
* Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-091-231/+231
* Merged revisions 80928 via svnmerge fromAntoine Pitrou2010-05-071-3/+4
* Merged revisions 76836 via svnmerge fromAntoine Pitrou2009-12-141-8/+8
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-2/+2
* Issue #4738: finer-grained locking in the zlib module.Antoine Pitrou2009-01-021-61/+63
* Fixes release blocker issue #3492 and #3790.Gregory P. Smith2008-09-061-31/+31
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-14/+39
* #3247 Get rid of Py_FindMethod; use tp_members instead.Amaury Forgeot d'Arc2008-07-021-33/+44
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-5/+15
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-31/+31
* Merged revisions 62194,62197-62198,62204-62205,62214,62219-62221,62227,62229-...Christian Heimes2008-04-091-0/+4