summaryrefslogtreecommitdiff
path: root/Modules/zlibmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #8650: zlib.compress() and zlib.decompress() raise an OverflowError ifVictor Stinner2011-01-041-4/+18
* Merged revisions 81098 via svnmerge fromAntoine Pitrou2010-05-111-4/+17
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-231/+231
* Merged revisions 80926 via svnmerge fromAntoine Pitrou2010-05-071-3/+4
* Issue #4757: `zlib.compress` and other methods in the zlib module nowAntoine 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
* Merged revisions 61834,61841-61842,61851-61853,61863-61864,61869-61870,61874,...Christian Heimes2008-03-251-5/+6
* Merged revisions 61820-61823 via svnmerge fromChristian Heimes2008-03-241-2/+2
* crc32 always returns unsigned. cleanup the code a bit and revert r61648 withGregory P. Smith2008-03-201-6/+6
* Create a signed CRC32 hash. I'm not absolutely sure it's correct. At least it...Christian Heimes2008-03-191-1/+1
* zlib.crc32 and zlib.adler32 now return an unsigned value as any sane personGregory P. Smith2008-03-171-2/+2
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-2/+2
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-2/+2
* Merged revisions 59077-59104 via svnmerge fromGuido van Rossum2007-11-221-2/+3
* Convert a bunch of constant strings in C to unicode.Neal Norwitz2007-08-231-1/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-6/+4
* zlib now uses bytes everywhere, and the test passes.Guido van Rossum2007-05-221-36/+62
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-0/+6
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-0/+106
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-1/+3
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* [Patch #1350573] zlib.crc32 doesn't handle 0xffffffff seed. Add tests and bu...Andrew M. Kuchling2005-11-221-2/+2
* [Bug #1083110] calling .flush() on decompress objects causes a segfault due t...Andrew M. Kuchling2004-12-281-1/+5
* - Thanks to Scott David Daniels, a subtle bug in how the zlibGuido van Rossum2003-02-031-12/+45
* Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." linkMark Hammond2002-07-231-1/+1
* Removed more stray instances of statichere, but left _sre.c alone.Tim Peters2002-07-171-2/+2
* staticforward bites the dust.Jeremy Hylton2002-07-171-2/+2
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-22/+22
* Repair widespread misuse of _PyString_Resize. Since it's clear peopleTim Peters2002-04-271-18/+7
* Fix SF #544995 (zlib crash on second flush call)Jeremy Hylton2002-04-191-0/+1
* Use the PyModule_Add*() APIs instead of manipulating the module dictFred Drake2002-04-011-9/+8
* Changed C++ comment into standard comment.Sjoerd Mullender2002-03-111-1/+1
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-2/+2
* Added missing cast.Jack Jansen2001-10-231-1/+1
* Remove unused convenience routine.Jeremy Hylton2001-10-171-19/+0
* Simplify and regularize docstrings. Also reformat so that each docstringTim Peters2001-10-171-52/+47
* Trimmed trailing whitespace.Tim Peters2001-10-171-62/+62
* Removed more comments that didn't make much sense.Tim Peters2001-10-171-17/+1
* Removed obsolete comments about confused string refcount tricks (JeremyTim Peters2001-10-171-9/+4
* Undo needless INCREF chicanery introduced by SF patch #450702.Jeremy Hylton2001-10-161-47/+15
* Simplify and fix error handling for most cases.Jeremy Hylton2001-10-161-167/+113
* More reformatting.Jeremy Hylton2001-10-161-51/+50
* Add zlib_error() helper.Jeremy Hylton2001-10-161-92/+25