1. bf6ecf9 Issue #12848: The pure Python pickle implementation now treats object lengths as unsigned 32-bit integers, like the C implementation does. by Antoine Pitrou · 12 years ago
  2. a0dd22e #16306: report only the first unknown option and add more tests. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  3. 39bdad8 Issue #1160: Fix compiling large regular expressions on UCS2 builds. by Antoine Pitrou · 12 years ago
  4. 19e568d Issue #15677: Document that zlib and gzip accept a compression level of 0 to mean 'no compression'. by Nadeem Vawda · 12 years ago
  5. 9463e3a Fixes issue #9535: Fix pending signals that have been received but not by Gregory P. Smith · 12 years ago
  6. 7ee9555 Issue #16411: Fix a bug where zlib.decompressobj().flush() might try to access previously-freed memory. by Nadeem Vawda · 12 years ago
  7. ee7889d Issue #16350, part 2: Set unused_data (and unconsumed_tail) correctly in decompressobj().flush(). by Nadeem Vawda · 12 years ago
  8. 3907994 Issue #16350: Fix zlib decompressor handling of unused_data with multiple calls to decompress() after EOF. by Nadeem Vawda · 12 years ago
  9. e4ad37e Issue #16230: Fix a crash in select.select() when one the lists changes size while iterated on. by Antoine Pitrou · 12 years ago
  10. 9f69e79 Issue #16228: Fix a crash in the json module where a list changes size while it is being encoded. by Antoine Pitrou · 12 years ago
  11. 6a5c7c3 Fix docstring for deque ctor to mark iterable parameter optional by Andrew Svetlov · 12 years ago
  12. c431128 initialize more global type objects (closes #16369) by Benjamin Peterson · 12 years ago
  13. 92c28ca #14897: Enhance error messages of struct.pack and struct.pack_into by Petri Lehtinen · 12 years ago
  14. 7646449 Fix math.factorial KeyboardInterrupt segfault. Thanks Amaury for report and diagnosis. by Mark Dickinson · 12 years ago
  15. 5f8f0d6 Issue #14398: Fix size truncation and overflow bugs in bz2 module. by Nadeem Vawda · 12 years ago
  16. 5591b02 Fixes Issue #16114: The subprocess module no longer provides a by Gregory P. Smith · 12 years ago
  17. cf45325 Closes #15897: zipimport.c doesn't check return value of fseek(). Typo by Jesus Cea · 12 years ago
  18. 09bf7a7 Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 12 years ago
  19. 67b7b98 Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka. by Senthil Kumaran · 12 years ago
  20. e26d3af Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD() by Christian Heimes · 12 years ago
  21. 57caede Issue #15973: fixed 3.2 backport. by Alexander Belopolsky · 12 years ago
  22. 3ec1536 Issue #15973: Fixed segmentation fault on timezone comparison to other types. by Alexander Belopolsky · 12 years ago
  23. 16d2b47 #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  24. c8754a1 Closes #15793: Stack corruption in ssl.RAND_egd() by Jesus Cea · 12 years ago
  25. e8db356 #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete (fix 2) by Jesus Cea · 12 years ago
  26. 1f2799b #15676: mmap: add empty file check prior to offset check <- Previous patch was incomplete by Jesus Cea · 12 years ago
  27. 941bfcc Closes #15676: mmap: add empty file check prior to offset check by Jesus Cea · 12 years ago
  28. 96efdd4 Issue #15868: Fix refleak in bytesio.c (Coverity #715365). by Stefan Krah · 12 years ago
  29. 1d85745 Issue #15841: The readable(), writable() and seekable() methods of BytesIO by Antoine Pitrou · 12 years ago
  30. 2543756 Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is compiled using the clang compiler by Ronald Oussoren · 12 years ago
  31. f2b34b8 Issue 15777: Fix a refleak in _posixsubprocess. by Ross Lagerwall · 12 years ago
  32. eb61f8b Fix for issue 15716: interpreter could crash when PYTHONEXECUTABLE was set on Mac OS X. by Ronald Oussoren · 12 years ago
  33. db579d7 Issue #15738: Fix a missing NULL check in subprocess_fork_exec(). by Stefan Krah · 12 years ago
  34. 05d79e9 Issue #15477: Add workaround for log1p(-0.0) on platforms where it's broken. by Mark Dickinson · 12 years ago
  35. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  36. d182a6c Modules/socketmodule.c: netdb_lock: define static. by Matthias Klose · 12 years ago
  37. 03b4d50 Issue #15424: Add a __sizeof__ implementation for array objects. by Meador Inge · 12 years ago
  38. 401e17d open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't by Victor Stinner · 12 years ago
  39. 0c1c0d4 Make TextIOWrapper's documentation clearer by copying the newline argument's description from open(). by Antoine Pitrou · 12 years ago
  40. 16e2fca Closes #15469: Correct __sizeof__ support for deque by Jesus Cea · 12 years ago
  41. e9c5318 Closes #15512: Correct __sizeof__ support for parser by Jesus Cea · 12 years ago
  42. a9a53c7 Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation code. by Antoine Pitrou · 12 years ago
  43. 8f328d0 Issue #15489: Add a __sizeof__ implementation for BytesIO objects. by Antoine Pitrou · 12 years ago
  44. 10f0c50 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 12 years ago
  45. 90bc2dbc Issue #15402: Simplify Struct.__sizeof__ and make tests more precise. by Meador Inge · 12 years ago
  46. b14d8c9 Issue #15402: Add a __sizeof__ method to struct.Struct. by Meador Inge · 12 years ago
  47. ef391ac Raise ImportError if pyexpat's version is incompatible by Eli Bendersky · 12 years ago
  48. 62a5c32 Closes #15395: memory leaks in selectmodule.c by Jesus Cea · 12 years ago
  49. ef86d12 Closes #15396: memory leak in tkinter by Jesus Cea · 12 years ago
  50. 60c2266 Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows. by Meador Inge · 12 years ago
  51. 66099b0 ISsue #14988: restore Python 2's behavior of raising ImportError when unable to load pyexpat, instead of a SystemError/RuntimeError by Eli Bendersky · 12 years ago
  52. 9235b25 Issue #15247: FileIO now raises an error when given a file descriptor pointing to a directory. by Antoine Pitrou · 12 years ago
  53. f01a337 Fix issue # 15033 - Return the proper exitcode for failure when modules are invoked using -m switch. Patch contributed by Jeff Knupp by Senthil Kumaran · 12 years ago
  54. 2d24e94 Issue #5067: improve some json error messages. Patch by Serhiy Storchaka. by Antoine Pitrou · 12 years ago
  55. 5135992 Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 12 years ago
  56. 9b0c006 Remove useless test (flowinfo is unsigned). by Charles-François Natali · 12 years ago
  57. 9ed8b4e #10053: Don't close FDs when FileIO.__init__ fails by Hynek Schlawack · 12 years ago
  58. 197651b Issue #10133: Make multiprocessing deallocate buffer if socket read fails. by Richard Oudkerk · 12 years ago
  59. 58f07a9 Fixes issue #15000: support the odd x32 abi on posixsubprocess's system call. by Gregory P. Smith · 12 years ago
  60. e1ad3da Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts. by Antoine Pitrou · 12 years ago
  61. 031e25b Issue #9041: raised exception is misleading by Meador Inge · 12 years ago
  62. 2cc7156 #4841: Fix FileIO constructor to honor closefd when called repeatedly by Hynek Schlawack · 12 years ago
  63. a103b96 Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows. by Antoine Pitrou · 12 years ago
  64. da029fb Issue #14741: Fix missing support for ellipsis in parser module. by Mark Dickinson · 12 years ago
  65. 11c1dee Issue #14697: Fix missing parser module support for set displays and set comprehensions. by Mark Dickinson · 12 years ago
  66. cf360b9 Issue #14701: Add missing support for 'raise ... from' in parser module. by Mark Dickinson · 12 years ago
  67. 7ef909c Fix for issue 14725 for 3.2 branch by Richard Oudkerk · 12 years ago
  68. 407b3bd Issue #14696: Fix parser module to understand 'nonlocal' declarations. by Mark Dickinson · 12 years ago
  69. ea7e9f9 Issue #9154: Fix parser module to understand function annotations. by Mark Dickinson · 12 years ago
  70. a13b109 Issue 13496: Fix bisect.bisect overflow bug for large collections. by Mark Dickinson · 12 years ago
  71. e900096 prevent writing to stderr from messing up the exception state (closes #14474) by Benjamin Peterson · 12 years ago
  72. 6211b88 Issue #14437: Fix building the _io module under Cygwin. by Antoine Pitrou · 12 years ago
  73. 0f6ce8d Issue #3367: NULL-terminate argv[] copies to prevent an invalid access by Stefan Krah · 12 years ago
  74. 71faefc Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined. by Ross Lagerwall · 12 years ago
  75. 2522771 Fixes Issue 14234: fix for the previous commit, keep compilation when by Gregory P. Smith · 12 years ago
  76. 373c740 Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 12 years ago
  77. 8e91cf6 Fixes issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 12 years ago
  78. 2354a75 fix indentation by Benjamin Peterson · 12 years ago
  79. e48944b keep the buffer object around while we're using it (closes #14212) by Benjamin Peterson · 12 years ago
  80. 2201ecb Issue #14125: backport refleak fix (d4adbf908983). by Stefan Krah · 13 years ago
  81. fab9766 Fix typo in “seperat{or,ion}” by Éric Araujo · 13 years ago
  82. 7ef825f merge with 3.2 by Georg Brandl · 13 years ago
  83. c9a4207 Remove reST markup from --help output. Also: O(n**2) is dict construction, not single insertion. by Georg Brandl · 13 years ago
  84. 86838b0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 13 years ago
  85. e249dca merge 3.2 by Benjamin Peterson · 13 years ago
  86. 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 13 years ago
  87. 4fe85ab sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures by Petri Lehtinen · 13 years ago
  88. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  89. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  90. 2f5a163 Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). by Antoine Pitrou · 13 years ago
  91. f5f1fe0 Issue #13015: Fix a possible reference leak in defaultdict.__repr__. by Antoine Pitrou · 13 years ago
  92. 4a84f58 Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Petri Lehtinen · 13 years ago
  93. 6d0d24e Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix by Charles-François Natali · 13 years ago
  94. 023fe33 sqlite3: Handle strings with embedded zeros correctly by Petri Lehtinen · 13 years ago
  95. ab32066 Fix zip_import.c's read_directory() to use appropriate types for the values by Gregory P. Smith · 13 years ago
  96. 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
  97. 75ff65e Issue #13806: The size check in audioop decompression functions was too strict and could reject valid compressed data. by Antoine Pitrou · 13 years ago
  98. 3f36631 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 13 years ago
  99. f2bf8a6 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 13 years ago
  100. 65992c1 - Issue #13840: Fix ctypes.create_string_buffer exception message and docs. by Meador Inge · 13 years ago