1. 638fb9b Issue #16828: Fix error incorrectly raised by bz2.compress(''). by Nadeem Vawda · 12 years ago
  2. 5f8f0d6 Issue #14398: Fix size truncation and overflow bugs in bz2 module. by Nadeem Vawda · 12 years ago
  3. d41a98b Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 13 years ago
  4. 70c6044 Issue #9928: Properly initialize the types exported by the bz2 module. by Antoine Pitrou · 14 years ago
  5. 7ffa196 Issue #8397: Raise an error when attempting to mix iteration and regular by Antoine Pitrou · 14 years ago
  6. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  7. 349fd52 Issue #8468: bz2.BZ2File() accepts str with surrogates and bytes filenames by Victor Stinner · 14 years ago
  8. c66363f Merged revisions 75818 via svnmerge from by Antoine Pitrou · 15 years ago
  9. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  10. 308705e Merged revisions 68484-68485 via svnmerge from by Antoine Pitrou · 16 years ago
  11. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  12. 6aa2d1f Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-65645 via svnmerge from by Georg Brandl · 16 years ago
  13. 86b2fb9 Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,64744-64746,64756-64761,64767-64769,64771-64772,64774-64775,64788,64793,64835-64836 via svnmerge from by Georg Brandl · 16 years ago
  14. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  15. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  16. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  17. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  18. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  19. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  20. 53cbdaa Convert a bunch of constant strings in C to unicode. by Neal Norwitz · 17 years ago
  21. 30d1c51 Remove _PyObject_Del by Neal Norwitz · 17 years ago
  22. 75c26bc BZ2File.read(0) should return b"" rather than raising ValueError. by Guido van Rossum · 17 years ago
  23. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  24. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  25. 88e860c Fix bz2_test.py by removing the tests for universal newline mode. by Guido van Rossum · 17 years ago
  26. f09ca14 Checkpoint: half-fixed the bz2 module. 'U' is no longer supported. by Guido van Rossum · 17 years ago
  27. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  28. 522a6c6 bz2 uses bytes everywhere (even for the 'newlines' attribute). test_bz2 passes. by Guido van Rossum · 17 years ago
  29. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  30. 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 18 years ago
  31. 902d6eb Merged revisions 53005-53303 via svnmerge from by Thomas Wouters · 18 years ago
  32. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  33. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  34. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  35. 7096760 Get rid of xreadlines() (methods). by Neal Norwitz · 18 years ago
  36. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  37. 093ab1a Remove unused variable by Neal Norwitz · 19 years ago
  38. 47fab92 Bug #1366000: cleanup BZ2File.seek() logic. Fixes the case of whence=2, offset>=0. by Georg Brandl · 19 years ago
  39. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  40. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  41. 20bad74 SF Bug #1407069, Remove extra semi-colon if there is no long long by Neal Norwitz · 19 years ago
  42. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  43. a8bcecc bug [ 1274069 ] bz2module.c compiler warning by Georg Brandl · 19 years ago
  44. 33a5f2a Fix BZ2File.(x)readlines() for files without a newline. by Georg Brandl · 19 years ago
  45. 6b95f1d Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly. by Georg Brandl · 19 years ago
  46. bb9c739 Add error checks for the bz2, cStringIO and operator modules. by Walter Dörwald · 20 years ago
  47. a6e436e - Fixed #853061: allow BZ2Compressor.compress() to receive an empty string by Gustavo Niemeyer · 21 years ago
  48. db60805 Remove support for --without-universal-newlines (see PEP 11). by Skip Montanaro · 21 years ago
  49. 21d896c Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros by Neal Norwitz · 21 years ago
  50. c16f3bd Patch #708495: Port more stuff to OpenVMS. by Martin v. Löwis · 21 years ago
  51. 572f523 Applying patch #728656, by logistix, fixing opening of nonexistent by Gustavo Niemeyer · 21 years ago
  52. 7628f1f Applying patch by Neal Norwitz: by Gustavo Niemeyer · 21 years ago
  53. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 21 years ago
  54. a33d0aa Unparenting BZ2File, as discussed in SF patch #661796. by Gustavo Niemeyer · 22 years ago
  55. fb8595d Patch #661760: Cygwin auto-import module patch by Jason Tishler · 22 years ago
  56. d0ebd7e Patch #649060: Cygwin bz2module patch by Jason Tishler · 22 years ago
  57. e17af7b Include Python.h first. by Martin v. Löwis · 22 years ago
  58. 6ee6db8 bz2_compress/bz2_decompress: more casting away LONG_LONG for by Tim Peters · 22 years ago
  59. 39185d6 BZ2Decomp_decompress(): Fixed more long vs LONG_LONG confusions. by Tim Peters · 22 years ago
  60. 2858e5e BZ2Comp_flush(): Fixed more int vs LONG_LONG confusions. by Tim Peters · 22 years ago
  61. f29f0c6 BZ2Comp_compress(): Explicitly cast the LONG_LONG size argument to by Tim Peters · 22 years ago
  62. 07f075c BZ2Comp_compress(): changed decl of totalout to LONG_LONG, since it's by Tim Peters · 22 years ago
  63. a17c0c4 Repaired signed-vs-unsigned mismatch. by Tim Peters · 22 years ago
  64. e322809 This couldn't compile on WIndows, due to hardcoded "long long". Repaired. by Tim Peters · 22 years ago
  65. 49ea7be * Modules/bz2module.c by Gustavo Niemeyer · 22 years ago
  66. 7d7930b * bzmodule.c More fixes of XDECREF'd values not initialized. by Gustavo Niemeyer · 22 years ago
  67. 18142c0 Fix SF #633935, test_bz2 fails by Neal Norwitz · 22 years ago
  68. f8ca836 Patch implementing bz2 module. by Gustavo Niemeyer · 22 years ago