1. 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
  2. 031e25b Issue #9041: raised exception is misleading by Meador Inge · 12 years ago
  3. 2cc7156 #4841: Fix FileIO constructor to honor closefd when called repeatedly by Hynek Schlawack · 12 years ago
  4. a103b96 Issue #14829: Fix bisect and range() indexing with large indices (>= 2 ** 32) under 64-bit Windows. by Antoine Pitrou · 12 years ago
  5. da029fb Issue #14741: Fix missing support for ellipsis in parser module. by Mark Dickinson · 12 years ago
  6. 11c1dee Issue #14697: Fix missing parser module support for set displays and set comprehensions. by Mark Dickinson · 12 years ago
  7. cf360b9 Issue #14701: Add missing support for 'raise ... from' in parser module. by Mark Dickinson · 12 years ago
  8. 7ef909c Fix for issue 14725 for 3.2 branch by Richard Oudkerk · 12 years ago
  9. 407b3bd Issue #14696: Fix parser module to understand 'nonlocal' declarations. by Mark Dickinson · 12 years ago
  10. ea7e9f9 Issue #9154: Fix parser module to understand function annotations. by Mark Dickinson · 12 years ago
  11. a13b109 Issue 13496: Fix bisect.bisect overflow bug for large collections. by Mark Dickinson · 12 years ago
  12. e900096 prevent writing to stderr from messing up the exception state (closes #14474) by Benjamin Peterson · 12 years ago
  13. 6211b88 Issue #14437: Fix building the _io module under Cygwin. by Antoine Pitrou · 12 years ago
  14. 0f6ce8d Issue #3367: NULL-terminate argv[] copies to prevent an invalid access by Stefan Krah · 12 years ago
  15. 71faefc Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined. by Ross Lagerwall · 12 years ago
  16. 2522771 Fixes Issue 14234: fix for the previous commit, keep compilation when by Gregory P. Smith · 12 years ago
  17. 373c740 Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 12 years ago
  18. 8e91cf6 Fixes issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 12 years ago
  19. 2354a75 fix indentation by Benjamin Peterson · 12 years ago
  20. e48944b keep the buffer object around while we're using it (closes #14212) by Benjamin Peterson · 13 years ago
  21. 2201ecb Issue #14125: backport refleak fix (d4adbf908983). by Stefan Krah · 13 years ago
  22. fab9766 Fix typo in “seperat{or,ion}” by Éric Araujo · 13 years ago
  23. 7ef825f merge with 3.2 by Georg Brandl · 13 years ago
  24. c9a4207 Remove reST markup from --help output. Also: O(n**2) is dict construction, not single insertion. by Georg Brandl · 13 years ago
  25. 86838b0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 13 years ago
  26. e249dca merge 3.2 by Benjamin Peterson · 13 years ago
  27. 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 13 years ago
  28. 4fe85ab sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures by Petri Lehtinen · 13 years ago
  29. 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
  30. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  31. 2f5a163 Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). by Antoine Pitrou · 13 years ago
  32. f5f1fe0 Issue #13015: Fix a possible reference leak in defaultdict.__repr__. by Antoine Pitrou · 13 years ago
  33. 4a84f58 Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Petri Lehtinen · 13 years ago
  34. 6d0d24e Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix by Charles-François Natali · 13 years ago
  35. 023fe33 sqlite3: Handle strings with embedded zeros correctly by Petri Lehtinen · 13 years ago
  36. ab32066 Fix zip_import.c's read_directory() to use appropriate types for the values by Gregory P. Smith · 13 years ago
  37. 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
  38. 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
  39. 3f36631 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 13 years ago
  40. f2bf8a6 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 13 years ago
  41. 65992c1 - Issue #13840: Fix ctypes.create_string_buffer exception message and docs. by Meador Inge · 13 years ago
  42. 7fa5a99 merge heads by Benjamin Peterson · 13 years ago
  43. 5311c1d Issue #13772: In os.symlink() under Windows, do not try to guess the link by Antoine Pitrou · 13 years ago
  44. 91eef98 fix declaration style by Benjamin Peterson · 13 years ago
  45. 4842efc Fix FreeBSD, NetBSD and OpenBSD behavior of the issue #8052 fix. by Gregory P. Smith · 13 years ago
  46. e9b7cab Another issue #8052 bugfix (related to previous commit). by Gregory P. Smith · 13 years ago
  47. e3f7848 Bugfix for issue #8052 fix on *BSD variants. by Gregory P. Smith · 13 years ago
  48. 8facece Fixes issue #8052: The posix subprocess module's close_fds behavior was by Gregory P. Smith · 13 years ago
  49. 12fdca5 Avoid the compiler warning about the unused return value. by Gregory P. Smith · 13 years ago
  50. fc1b6f0 Fix the _io module leaking references when a sub-interpreter is created. by Antoine Pitrou · 13 years ago
  51. acd5f7b #13665: s/string/bytes/ in error message. by Ezio Melotti · 13 years ago
  52. 2f828f2 Test running of code in a sub-interpreter (prelude to issue #6531). by Antoine Pitrou · 13 years ago
  53. 366999a Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by by Charles-François Natali · 13 years ago
  54. 667d75d Don't redefine _GNU_SOURCE if it's already defined. by Ross Lagerwall · 13 years ago
  55. 031bf95 Issue #11006: Don't issue low level warning in subprocess when pipe2() fails. by Ross Lagerwall · 13 years ago
  56. bd206e2 Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
  57. e83f899 Issue #13530: Document os.lseek() result by Victor Stinner · 13 years ago
  58. 136ea49 Issue #10951: Fix a compiler warning in timemodule.c by Victor Stinner · 13 years ago
  59. 94ba691 main() now displays an error message before exiting if a command line argument by Victor Stinner · 13 years ago
  60. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  61. 10db4de Issue #4028: Make multiprocessing build on SunOS. by Charles-François Natali · 13 years ago
  62. 3bfc65a Issue #13505: Make pickling of bytes object compatible with Python 2. by Alexandre Vassalotti · 13 years ago
  63. 0e686cb Fix docstring typo. by Florent Xicluna · 13 years ago
  64. 720f34a Issue #5905: time.strftime() is now using the locale encoding, instead of by Victor Stinner · 13 years ago
  65. 6613c18 Issue #13415: Test in configure if unsetenv() has a return value or not. by Charles-François Natali · 13 years ago
  66. 06403cf decref correct object by Benjamin Peterson · 13 years ago
  67. 4bb867d plug refleak by Benjamin Peterson · 13 years ago
  68. 116d6b9 Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. by Antoine Pitrou · 13 years ago
  69. 60b385e Issue #13415: os.unsetenv() doesn't ignore errors anymore. by Victor Stinner · 13 years ago
  70. ab1d16b Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 13 years ago
  71. 58fcf9f Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 13 years ago
  72. 992d9e0 Fix few typos. by Florent Xicluna · 13 years ago
  73. 98d2c0a #13379: update Unicode version in unicodedata docstrings and comments. by Ezio Melotti · 13 years ago
  74. dcfde5a Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. by Ross Lagerwall · 13 years ago
  75. 7ab4192 Issue #12342: Improve _tkinter error message on unencodable character by Victor Stinner · 13 years ago
  76. b3bc7e7 Issue #10570: curses.putp() is now expecting a byte string, instead of a by Victor Stinner · 13 years ago
  77. 2662133 Issue #10570: curses.tigetstr() is now expecting a byte string, instead of a by Victor Stinner · 13 years ago
  78. 91d5193 Closes #2892: preserve iterparse events in case of SyntaxError. by Florent Xicluna · 13 years ago
  79. c45fb25 Issue #13255: wrong docstrings in array module. by Florent Xicluna · 13 years ago
  80. 202a3c4 3.2 - Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro in _sre.c by Senthil Kumaran · 13 years ago
  81. 8d91d45 Issue #10653: Fix time.strftime() on Windows, check for invalid format strings by Victor Stinner · 13 years ago
  82. c1f32ca Issue #10653: On Windows, use strftime() instead of wcsftime() because by Victor Stinner · 13 years ago
  83. d41a98b Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 13 years ago
  84. 42c28cd Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
  85. ed8ba14 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 13 years ago
  86. 1665d2c Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. by Antoine Pitrou · 13 years ago
  87. 1e44fec Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago
  88. ffd41d9 Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  89. 1efb33a Issue #12881: ctypes: Fix segfault with large structure field names. by Meador Inge · 13 years ago
  90. d8c347a Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  91. 5a4a109 Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas by Charles-François Natali · 13 years ago
  92. b86ecf4 Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. by Meador Inge · 13 years ago
  93. b2f6bc7 Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks Stefan Krah. by Mark Dickinson · 13 years ago
  94. adde86d fix compiler compliant about \0 not being an opcode by Benjamin Peterson · 13 years ago
  95. 4507e64 Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor was actually received by Jesus Cea · 13 years ago
  96. bbe46d6 Issue #12483: ctypes: Fix a crash when the destruction of a callback by Amaury Forgeot d'Arc · 13 years ago
  97. ab7060e Close #12950: multiprocessing "test_fd_transfer" fails under OpenIndiana by Jesus Cea · 13 years ago
  98. f22913b cast to getter by Benjamin Peterson · 13 years ago
  99. f6f3a35 add a __dict__ descr for IOBase (closes #12878) by Benjamin Peterson · 13 years ago
  100. 02dd539 Issue #12764: Fix a crash in ctypes when the name of a Structure field is not by Amaury Forgeot d'Arc · 13 years ago