summaryrefslogtreecommitdiffstats
path: root/Modules/zlibmodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Remove many calls to set MemoryError exceptions.Jeremy Hylton2001-10-161-28/+4
* Reformat!Jeremy Hylton2001-10-161-586/+576
* [ #403753 ] zlib decompress; uncontrollable memory usageJeremy Hylton2001-10-161-10/+64
* Update URL. Fixes bug #468118.Martin v. Löwis2001-10-091-1/+1
* Silence warnings about passing unsigned char** as char**.Martin v. Löwis2001-09-081-4/+4
* Patch #450702: allow threads when calling into zlib, protect usage ofMartin v. Löwis2001-09-071-114/+350
* Patch #103926: fix two warnings from Tru64's compilerAndrew M. Kuchling2001-02-221-1/+1
* Patch #103373 from Donovan Baarda: This patch:Andrew M. Kuchling2001-02-211-194/+131
* Docs for new Windows zlib build procedure.Tim Peters2001-01-311-8/+1
* Fix [ Bug #129293 ] zlib library used for binary win32 distribution can crashMark Hammond2001-01-311-2/+11
* Patch #101810: check whether zst.avail_out is non-zero when gettingAndrew M. Kuchling2000-10-091-1/+15
* Use METH_VARARGS instead of numeric constant 1Andrew M. Kuchling2000-08-031-12/+22
* Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',Thomas Wouters2000-07-211-1/+1
* ANSI-ficationPeter Schneider-Kamp2000-07-101-44/+16
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-3/+3
* Windows: Since we're not using ZLIB.DLL any more, don't define ZLIB_DLL.Guido van Rossum2000-04-061-3/+0
* Massive patch by Skip Montanaro to add ":name" to as manyGuido van Rossum2000-02-291-9/+9
* For ZlibError and ZLIB_VERSION, only attempt to add entry to theFred Drake1999-12-221-3/+6
* Fix typo in docstring: wbites -> wbitsAndrew M. Kuchling1999-12-201-1/+1
* Cast added by Jack Jansen (for Mac port).Guido van Rossum1999-04-121-1/+2
* Patch by Andrew Kuchling to unflush() (flush() for deflating).Guido van Rossum1999-04-071-4/+8
* Add an .unused_data attribute to decompressor objects. If .unused_dataAndrew M. Kuchling1999-03-251-0/+22
* Fixed the flush() method of compression objects; the test forAndrew M. Kuchling1999-03-221-12/+29
* Added missing DECREF's in the error branches when creating a compressor orAndrew M. Kuchling1999-01-291-1/+12
* PyInit_zlib(): Plug a small memory leak. Jeremy is looking into theBarry Warsaw1999-01-281-0/+1
* fix bug in PyZlib_flush.Jeremy Hylton1999-01-061-4/+4
* replace missing zalloc initialization (test_zlib now runsJeremy Hylton1998-12-211-0/+1
* remove debugging fprintf (should have checked this before previousJeremy Hylton1998-12-211-2/+0
* patches from AndrewJeremy Hylton1998-12-181-23/+51
* When _PyString_Resize() reports failure, the variable referring to theFred Drake1998-12-181-5/+0
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1