summaryrefslogtreecommitdiff
path: root/Modules/bz2module.c
Commit message (Expand)AuthorAgeFilesLines
* bpo-30614: testInitNonExistentFile() of test_bz2 leaks references (#2033)Stéphane Wirtel2017-06-101-25/+39
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-1/+1
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-3/+2
* Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_ResizeKristján Valur Jónsson2014-04-251-1/+2
* Closes #19878: Fix segfault in bz2 module.Nadeem Vawda2013-12-081-7/+10
* Issue #16828: Fix error incorrectly raised by bz2.compress('').Nadeem Vawda2013-01-021-1/+1
* Issue #14398: Fix size truncation and overflow bugs in bz2 module.Nadeem Vawda2012-10-211-137/+179
* Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a ...Nadeem Vawda2011-10-131-15/+4
* Merged revisions 84980 via svnmerge fromAntoine Pitrou2010-09-231-3/+6
* Merged revisions 83440 via svnmerge fromAntoine Pitrou2010-08-011-0/+28
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-1660/+1660
* Issue #7205: Fix a possible deadlock when using a BZ2File object from several...Antoine Pitrou2009-10-271-1/+6
* Issue #3860: GzipFile and BZ2File now support the context manager protocol.Antoine Pitrou2009-01-101-0/+32
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-121-10/+48
* #3205: bz2 iterator fails silently on MemoryErrorAntoine Pitrou2008-08-091-0/+1
* - Issue #3309: Fix bz2.BZFile itererator to release its internal lockGregory P. Smith2008-07-071-0/+1
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-54/+54
* Renamed PyString to PyBytesChristian Heimes2008-05-261-54/+54
* fix compiler warningsGregory P. Smith2008-04-121-5/+5
* Use the new PyFile_IncUseCount & PyFile_DecUseCount calls appropriatlyGregory P. Smith2008-04-071-0/+15
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-7/+7
* issue1597011: Fix for bz2 module corner-case error due to error checking bug.Sean Reifscheider2007-09-171-23/+17
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-13/+10
* Bug #1622896: fix a rare corner case where the bz2 module raised anGeorg Brandl2007-03-131-10/+11
* [Patch #1615868 by Lars Gustaebel] Use Py_off_t to fix BZ2File.seek() for off...Andrew M. Kuchling2006-12-181-1/+1
* Remove extra semi-colons reported by Johnny Lee on python-dev. Backport if a...Neal Norwitz2006-09-231-2/+2
* Patch #1535500: fix segfault in BZ2File.writelines and make sure itGeorg Brandl2006-08-141-2/+17
* Fix more memory allocation issues found with failmalloc.Neal Norwitz2006-07-221-8/+20
* Patch #1516912: improve Modules support for OpenVMS.Neal Norwitz2006-07-101-0/+4
* Fix some Py_ssize_t issuesNeal Norwitz2006-06-121-5/+5
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-3/+3
* Remove unused variableNeal Norwitz2006-02-181-1/+0
* Bug #1366000: cleanup BZ2File.seek() logic. Fixes the case of whence=2, offse...Georg Brandl2006-02-181-42/+33
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+1
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* SF Bug #1407069, Remove extra semi-colon if there is no long longNeal Norwitz2006-01-171-1/+1
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-4/+4
* bug [ 1274069 ] bz2module.c compiler warningGeorg Brandl2005-09-031-5/+12
* Fix BZ2File.(x)readlines() for files without a newline.Georg Brandl2005-08-211-8/+31
* Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly.Georg Brandl2005-06-031-0/+4
* Add error checks for the bz2, cStringIO and operator modules.Walter Dörwald2004-11-011-4/+4
* - Fixed #853061: allow BZ2Compressor.compress() to receive an empty stringGustavo Niemeyer2004-02-141-0/+3
* Remove support for --without-universal-newlines (see PEP 11).Skip Montanaro2004-02-071-22/+0
* Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macrosNeal Norwitz2003-07-011-1/+1
* Patch #708495: Port more stuff to OpenVMS.Martin v. Löwis2003-05-031-0/+2
* Applying patch #728656, by logistix, fixing opening of nonexistentGustavo Niemeyer2003-04-291-1/+1
* Applying patch by Neal Norwitz:Gustavo Niemeyer2003-04-271-0/+25
* Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.Martin v. Löwis2003-03-291-4/+4
* Unparenting BZ2File, as discussed in SF patch #661796.Gustavo Niemeyer2003-02-111-102/+158