index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
zlibmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #12839: Fix crash in zlib module due to version mismatch.
Nadeem Vawda
2011-08-28
1
-1/+7
*
Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tail
Nadeem Vawda
2011-05-14
1
-7/+12
*
Issue #8681: Make the zlib module's error messages more informative when
Antoine Pitrou
2010-05-11
1
-4/+17
*
Untabify C files. Will watch buildbots.
Antoine Pitrou
2010-05-09
1
-237/+237
*
Issue #8571: Fix an internal error when compressing or decompressing a
Antoine Pitrou
2010-05-07
1
-3/+4
*
This reverts r63675 based on the discussion in this thread:
Gregory P. Smith
2008-06-09
1
-32/+32
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
1
-32/+32
*
Fix zlib crash from zlib.decompressobj().flush(val) when val was not positive.
Gregory P. Smith
2008-04-09
1
-0/+4
*
Use a 32-bit unsigned int here, a long is not needed.
Gregory P. Smith
2008-03-25
1
-4/+4
*
replace calls to get the initial values with the raw constants.
Gregory P. Smith
2008-03-23
1
-2/+2
*
Revert r61779 - It undid correct code and caused test_zlib to fail on all
Gregory P. Smith
2008-03-23
1
-4/+2
*
Fix test_tarfile failures on Alpha (Tru64). The problem was caused in r61449
Neal Norwitz
2008-03-23
1
-2/+4
*
Force zlib.crc32 and zlib.adler32 to return a signed integer on all platforms
Gregory P. Smith
2008-03-17
1
-8/+17
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...
Christian Heimes
2007-12-19
1
-2/+2
*
Fixed #1372: zlibmodule.c: int overflow in PyZlib_decompress
Christian Heimes
2007-11-21
1
-2/+3
*
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
Martin v. Löwis
2007-07-21
1
-6/+4
*
Patch #1503046, Conditional compilation of zlib.(de)compressobj.copy
Neal Norwitz
2006-06-12
1
-0/+6
*
PyZlib_copy(), PyZlib_uncopy(): Repair leaks on the normal-case path.
Tim Peters
2006-05-17
1
-5/+9
*
Patch #1435422: zlib's compress and decompress objects now have a
Georg Brandl
2006-05-16
1
-0/+102
*
Patch #1459631: documnent zlib.Decompress.flush() length parameter.
Georg Brandl
2006-04-01
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
*
Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." link
Mark Hammond
2002-07-23
1
-1/+1
*
Removed more stray instances of statichere, but left _sre.c alone.
Tim Peters
2002-07-17
1
-2/+2
*
staticforward bites the dust.
Jeremy Hylton
2002-07-17
1
-2/+2
*
Patch #568124: Add doc string macros.
Martin v. Löwis
2002-06-13
1
-22/+22
*
Repair widespread misuse of _PyString_Resize. Since it's clear people
Tim Peters
2002-04-27
1
-18/+7
*
Fix SF #544995 (zlib crash on second flush call)
Jeremy Hylton
2002-04-19
1
-0/+1
*
Use the PyModule_Add*() APIs instead of manipulating the module dict
Fred Drake
2002-04-01
1
-9/+8
*
Changed C++ comment into standard comment.
Sjoerd Mullender
2002-03-11
1
-1/+1
*
Patch supplied by Burton Radons for his own SF bug #487390: Modifying
Guido van Rossum
2001-12-08
1
-2/+2
*
Added missing cast.
Jack Jansen
2001-10-23
1
-1/+1
*
Remove unused convenience routine.
Jeremy Hylton
2001-10-17
1
-19/+0
*
Simplify and regularize docstrings. Also reformat so that each docstring
Tim Peters
2001-10-17
1
-52/+47
*
Trimmed trailing whitespace.
Tim Peters
2001-10-17
1
-62/+62
*
Removed more comments that didn't make much sense.
Tim Peters
2001-10-17
1
-17/+1
*
Removed obsolete comments about confused string refcount tricks (Jeremy
Tim Peters
2001-10-17
1
-9/+4
*
Undo needless INCREF chicanery introduced by SF patch #450702.
Jeremy Hylton
2001-10-16
1
-47/+15
*
Simplify and fix error handling for most cases.
Jeremy Hylton
2001-10-16
1
-167/+113
*
More reformatting.
Jeremy Hylton
2001-10-16
1
-51/+50
*
Add zlib_error() helper.
Jeremy Hylton
2001-10-16
1
-92/+25
*
Remove many calls to set MemoryError exceptions.
Jeremy Hylton
2001-10-16
1
-28/+4
*
Reformat!
Jeremy Hylton
2001-10-16
1
-586/+576
*
[ #403753 ] zlib decompress; uncontrollable memory usage
Jeremy Hylton
2001-10-16
1
-10/+64
*
Update URL. Fixes bug #468118.
Martin v. Löwis
2001-10-09
1
-1/+1
*
Silence warnings about passing unsigned char** as char**.
Martin v. Löwis
2001-09-08
1
-4/+4
*
Patch #450702: allow threads when calling into zlib, protect usage of
Martin v. Löwis
2001-09-07
1
-114/+350
*
Patch #103926: fix two warnings from Tru64's compiler
Andrew M. Kuchling
2001-02-22
1
-1/+1
[next]