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