summaryrefslogtreecommitdiffstats
path: root/Modules/bz2module.c
Commit message (Expand)AuthorAgeFilesLines
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-7/+7
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-4/+4
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-67/+55
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-191-1/+4
* Convert a bunch of constant strings in C to unicode.Neal Norwitz2007-08-231-1/+1
* Remove _PyObject_DelNeal Norwitz2007-08-191-3/+3
* BZ2File.read(0) should return b"" rather than raising ValueError.Guido van Rossum2007-08-071-1/+1
* Merged revisions 56492-56752 via svnmerge fromGuido van Rossum2007-08-051-1/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-13/+10
* Fix bz2_test.py by removing the tests for universal newline mode.Guido van Rossum2007-06-131-11/+2
* Checkpoint: half-fixed the bz2 module. 'U' is no longer supported.Guido van Rossum2007-06-131-211/+42
* Rip out the file object's implementation.Guido van Rossum2007-06-121-5/+7
* bz2 uses bytes everywhere (even for the 'newlines' attribute).Guido van Rossum2007-05-221-66/+102
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-10/+11
* Kill off softspace completely (except in formatter.py which seems to haveGuido van Rossum2007-02-091-19/+1
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-2/+2
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-2/+17
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-13/+29
* Get rid of xreadlines() (methods).Neal Norwitz2006-03-171-8/+0
* 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
* Patch #661760: Cygwin auto-import module patchJason Tishler2003-01-061-29/+14
* Patch #649060: Cygwin bz2module patchJason Tishler2002-12-051-14/+29
* Include Python.h first.Martin v. Löwis2002-11-231-1/+1
* bz2_compress/bz2_decompress: more casting away LONG_LONG forTim Peters2002-11-091-2/+2
* BZ2Decomp_decompress(): Fixed more long vs LONG_LONG confusions.Tim Peters2002-11-091-2/+2
* BZ2Comp_flush(): Fixed more int vs LONG_LONG confusions.Tim Peters2002-11-091-2/+2
* BZ2Comp_compress(): Explicitly cast the LONG_LONG size argument toTim Peters2002-11-091-1/+1
* BZ2Comp_compress(): changed decl of totalout to LONG_LONG, since it'sTim Peters2002-11-091-1/+1
* Repaired signed-vs-unsigned mismatch.Tim Peters2002-11-091-1/+1
* This couldn't compile on WIndows, due to hardcoded "long long". Repaired.Tim Peters2002-11-091-23/+23
* * Modules/bz2module.cGustavo Niemeyer2002-11-081-12/+21