| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #5863: Rewrite BZ2File in pure Python, and allow it to accept | Antoine Pitrou | 2011-04-03 | 1 | -2180/+0 |
* | Issue #9928: Properly initialize the types exported by the bz2 module. | Antoine Pitrou | 2010-09-23 | 1 | -3/+6 |
* | Issue #8397: Raise an error when attempting to mix iteration and regular | Antoine Pitrou | 2010-08-01 | 1 | -0/+28 |
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -1545/+1545 |
* | Issue #8468: bz2.BZ2File() accepts str with surrogates and bytes filenames | Victor Stinner | 2010-04-23 | 1 | -2/+8 |
* | Merged revisions 75818 via svnmerge from | Antoine Pitrou | 2009-10-27 | 1 | -1/+6 |
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -3/+3 |
* | Merged revisions 68484-68485 via svnmerge from | Antoine Pitrou | 2009-01-10 | 1 | -0/+32 |
* | Merged revisions 65654 via svnmerge from | Martin v. Löwis | 2008-08-13 | 1 | -10/+48 |
* | Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-... | Georg Brandl | 2008-08-12 | 1 | -0/+1 |
* | Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,... | Georg Brandl | 2008-07-16 | 1 | -0/+1 |
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -3/+17 |
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -50/+50 |
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -7/+7 |
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -4/+4 |
* | Merging the py3k-pep3137 branch back into the py3k branch. | Guido van Rossum | 2007-11-06 | 1 | -67/+55 |
* | Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from | Thomas Wouters | 2007-09-19 | 1 | -1/+4 |
* | Convert a bunch of constant strings in C to unicode. | Neal Norwitz | 2007-08-23 | 1 | -1/+1 |
* | Remove _PyObject_Del | Neal Norwitz | 2007-08-19 | 1 | -3/+3 |
* | BZ2File.read(0) should return b"" rather than raising ValueError. | Guido van Rossum | 2007-08-07 | 1 | -1/+1 |
* | Merged revisions 56492-56752 via svnmerge from | Guido van Rossum | 2007-08-05 | 1 | -1/+1 |
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -13/+10 |
* | Fix bz2_test.py by removing the tests for universal newline mode. | Guido van Rossum | 2007-06-13 | 1 | -11/+2 |
* | Checkpoint: half-fixed the bz2 module. 'U' is no longer supported. | Guido van Rossum | 2007-06-13 | 1 | -211/+42 |
* | Rip out the file object's implementation. | Guido van Rossum | 2007-06-12 | 1 | -5/+7 |
* | bz2 uses bytes everywhere (even for the 'newlines' attribute). | Guido van Rossum | 2007-05-22 | 1 | -66/+102 |
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -10/+11 |
* | Kill off softspace completely (except in formatter.py which seems to have | Guido van Rossum | 2007-02-09 | 1 | -19/+1 |
* | Merged revisions 53005-53303 via svnmerge from | Thomas Wouters | 2007-01-09 | 1 | -1/+1 |
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -2/+2 |
* | Merge current trunk into p3yk. This includes the PyNumber_Index API change, | Thomas Wouters | 2006-08-21 | 1 | -2/+17 |
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -13/+29 |
* | Get rid of xreadlines() (methods). | Neal Norwitz | 2006-03-17 | 1 | -8/+0 |
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -3/+3 |
* | Remove unused variable | Neal Norwitz | 2006-02-18 | 1 | -1/+0 |
* | Bug #1366000: cleanup BZ2File.seek() logic. Fixes the case of whence=2, offse... | Georg Brandl | 2006-02-18 | 1 | -42/+33 |
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -1/+1 |
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
* | SF Bug #1407069, Remove extra semi-colon if there is no long long | Neal Norwitz | 2006-01-17 | 1 | -1/+1 |
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -4/+4 |
* | bug [ 1274069 ] bz2module.c compiler warning | Georg Brandl | 2005-09-03 | 1 | -5/+12 |
* | Fix BZ2File.(x)readlines() for files without a newline. | Georg Brandl | 2005-08-21 | 1 | -8/+31 |
* | Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly. | Georg Brandl | 2005-06-03 | 1 | -0/+4 |
* | Add error checks for the bz2, cStringIO and operator modules. | Walter Dörwald | 2004-11-01 | 1 | -4/+4 |
* | - Fixed #853061: allow BZ2Compressor.compress() to receive an empty string | Gustavo Niemeyer | 2004-02-14 | 1 | -0/+3 |
* | Remove support for --without-universal-newlines (see PEP 11). | Skip Montanaro | 2004-02-07 | 1 | -22/+0 |
* | Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros | Neal Norwitz | 2003-07-01 | 1 | -1/+1 |
* | Patch #708495: Port more stuff to OpenVMS. | Martin v. Löwis | 2003-05-03 | 1 | -0/+2 |
* | Applying patch #728656, by logistix, fixing opening of nonexistent | Gustavo Niemeyer | 2003-04-29 | 1 | -1/+1 |
* | Applying patch by Neal Norwitz: | Gustavo Niemeyer | 2003-04-27 | 1 | -0/+25 |