1. 763a61c Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 9 years ago
  2. bc62af1 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
  3. 5951f23 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  4. be580f2 Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_Resize by Kristján Valur Jónsson · 11 years ago
  5. 337c50b Closes #19878: Fix segfault in bz2 module. by Nadeem Vawda · 11 years ago
  6. 895cc22 Issue #16828: Fix error incorrectly raised by bz2.compress(''). by Nadeem Vawda · 12 years ago
  7. 45dba1d Issue #14398: Fix size truncation and overflow bugs in bz2 module. by Nadeem Vawda · 12 years ago
  8. 3624815 Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 13 years ago
  9. 2c7d685 Merged revisions 84980 via svnmerge from by Antoine Pitrou · 14 years ago
  10. 3970301 Merged revisions 83440 via svnmerge from by Antoine Pitrou · 14 years ago
  11. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  12. dd62966 Issue #7205: Fix a possible deadlock when using a BZ2File object from several threads at once. by Antoine Pitrou · 15 years ago
  13. b74fc2b Issue #3860: GzipFile and BZ2File now support the context manager protocol. by Antoine Pitrou · 16 years ago
  14. f91d46a Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, by Martin v. Löwis · 16 years ago
  15. 016b366 #3205: bz2 iterator fails silently on MemoryError by Antoine Pitrou · 16 years ago
  16. 3b1e6b2 - Issue #3309: Fix bz2.BZFile itererator to release its internal lock by Gregory P. Smith · 16 years ago
  17. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  18. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  19. 73bee44 fix compiler warnings by Gregory P. Smith · 17 years ago
  20. c20adf8 Use the new PyFile_IncUseCount & PyFile_DecUseCount calls appropriatly by Gregory P. Smith · 17 years ago
  21. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  22. 8335acb issue1597011: Fix for bz2 module corner-case error due to error checking bug. by Sean Reifscheider · 17 years ago
  23. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  24. a47337f Bug #1622896: fix a rare corner case where the bz2 module raised an by Georg Brandl · 18 years ago
  25. 44b054b [Patch #1615868 by Lars Gustaebel] Use Py_off_t to fix BZ2File.seek() for offsets > 2Gb by Andrew M. Kuchling · 18 years ago
  26. d3f9190 Remove extra semi-colons reported by Johnny Lee on python-dev. Backport if anyone cares. by Neal Norwitz · 18 years ago
  27. 3335a7a Patch #1535500: fix segfault in BZ2File.writelines and make sure it by Georg Brandl · 18 years ago
  28. b59d08c Fix more memory allocation issues found with failmalloc. by Neal Norwitz · 18 years ago
  29. 2a30cd0 Patch #1516912: improve Modules support for OpenVMS. by Neal Norwitz · 18 years ago
  30. 047f3c7 Fix some Py_ssize_t issues by Neal Norwitz · 18 years ago
  31. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  32. 093ab1a Remove unused variable by Neal Norwitz · 19 years ago
  33. 47fab92 Bug #1366000: cleanup BZ2File.seek() logic. Fixes the case of whence=2, offset>=0. by Georg Brandl · 19 years ago
  34. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  35. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  36. 20bad74 SF Bug #1407069, Remove extra semi-colon if there is no long long by Neal Norwitz · 19 years ago
  37. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  38. a8bcecc bug [ 1274069 ] bz2module.c compiler warning by Georg Brandl · 19 years ago
  39. 33a5f2a Fix BZ2File.(x)readlines() for files without a newline. by Georg Brandl · 19 years ago
  40. 6b95f1d Bug #1194181: bz2.BZ2File didn't handle mode 'U' correctly. by Georg Brandl · 19 years ago
  41. bb9c739 Add error checks for the bz2, cStringIO and operator modules. by Walter Dörwald · 20 years ago
  42. a6e436e - Fixed #853061: allow BZ2Compressor.compress() to receive an empty string by Gustavo Niemeyer · 21 years ago
  43. db60805 Remove support for --without-universal-newlines (see PEP 11). by Skip Montanaro · 21 years ago
  44. 21d896c Use appropriate macros not the deprecated DL_IMPORT/DL_EXPORT macros by Neal Norwitz · 21 years ago
  45. c16f3bd Patch #708495: Port more stuff to OpenVMS. by Martin v. Löwis · 21 years ago
  46. 572f523 Applying patch #728656, by logistix, fixing opening of nonexistent by Gustavo Niemeyer · 22 years ago
  47. 7628f1f Applying patch by Neal Norwitz: by Gustavo Niemeyer · 22 years ago
  48. b9a0f91 Rename LONG_LONG to PY_LONG_LONG. Fixes #710285. by Martin v. Löwis · 22 years ago
  49. a33d0aa Unparenting BZ2File, as discussed in SF patch #661796. by Gustavo Niemeyer · 22 years ago
  50. fb8595d Patch #661760: Cygwin auto-import module patch by Jason Tishler · 22 years ago
  51. d0ebd7e Patch #649060: Cygwin bz2module patch by Jason Tishler · 22 years ago
  52. e17af7b Include Python.h first. by Martin v. Löwis · 22 years ago
  53. 6ee6db8 bz2_compress/bz2_decompress: more casting away LONG_LONG for by Tim Peters · 22 years ago
  54. 39185d6 BZ2Decomp_decompress(): Fixed more long vs LONG_LONG confusions. by Tim Peters · 22 years ago
  55. 2858e5e BZ2Comp_flush(): Fixed more int vs LONG_LONG confusions. by Tim Peters · 22 years ago
  56. f29f0c6 BZ2Comp_compress(): Explicitly cast the LONG_LONG size argument to by Tim Peters · 22 years ago
  57. 07f075c BZ2Comp_compress(): changed decl of totalout to LONG_LONG, since it's by Tim Peters · 22 years ago
  58. a17c0c4 Repaired signed-vs-unsigned mismatch. by Tim Peters · 22 years ago
  59. e322809 This couldn't compile on WIndows, due to hardcoded "long long". Repaired. by Tim Peters · 22 years ago
  60. 49ea7be * Modules/bz2module.c by Gustavo Niemeyer · 22 years ago
  61. 7d7930b * bzmodule.c More fixes of XDECREF'd values not initialized. by Gustavo Niemeyer · 22 years ago
  62. 18142c0 Fix SF #633935, test_bz2 fails by Neal Norwitz · 22 years ago
  63. f8ca836 Patch implementing bz2 module. by Gustavo Niemeyer · 22 years ago