1. 2522771 Fixes Issue 14234: fix for the previous commit, keep compilation when by Gregory P. Smith · 12 years ago
  2. 373c740 Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 12 years ago
  3. 8e91cf6 Fixes issue #14234: CVE-2012-0876: Randomize hashes of xml attributes by Gregory P. Smith · 12 years ago
  4. 2354a75 fix indentation by Benjamin Peterson · 12 years ago
  5. e48944b keep the buffer object around while we're using it (closes #14212) by Benjamin Peterson · 12 years ago
  6. 2201ecb Issue #14125: backport refleak fix (d4adbf908983). by Stefan Krah · 12 years ago
  7. fab9766 Fix typo in “seperat{or,ion}” by Éric Araujo · 12 years ago
  8. 7ef825f merge with 3.2 by Georg Brandl · 13 years ago
  9. c9a4207 Remove reST markup from --help output. Also: O(n**2) is dict construction, not single insertion. by Georg Brandl · 13 years ago
  10. 86838b0 Fix test failure in test_cmd_line by initializing the hash secret at the earliest point. by Antoine Pitrou · 13 years ago
  11. e249dca merge 3.2 by Benjamin Peterson · 13 years ago
  12. 69e9727 ensure no one tries to hash things before the random seed is found by Benjamin Peterson · 13 years ago
  13. 4fe85ab sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures by Petri Lehtinen · 13 years ago
  14. 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
  15. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 13 years ago
  16. 2f5a163 Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). by Antoine Pitrou · 13 years ago
  17. f5f1fe0 Issue #13015: Fix a possible reference leak in defaultdict.__repr__. by Antoine Pitrou · 13 years ago
  18. 4a84f58 Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Petri Lehtinen · 13 years ago
  19. 6d0d24e Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fix by Charles-François Natali · 13 years ago
  20. 023fe33 sqlite3: Handle strings with embedded zeros correctly by Petri Lehtinen · 13 years ago
  21. ab32066 Fix zip_import.c's read_directory() to use appropriate types for the values by Gregory P. Smith · 13 years ago
  22. 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 13 years ago
  23. 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
  24. 3f36631 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 13 years ago
  25. f2bf8a6 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 13 years ago
  26. 65992c1 - Issue #13840: Fix ctypes.create_string_buffer exception message and docs. by Meador Inge · 13 years ago
  27. 7fa5a99 merge heads by Benjamin Peterson · 13 years ago
  28. 5311c1d Issue #13772: In os.symlink() under Windows, do not try to guess the link by Antoine Pitrou · 13 years ago
  29. 91eef98 fix declaration style by Benjamin Peterson · 13 years ago
  30. 4842efc Fix FreeBSD, NetBSD and OpenBSD behavior of the issue #8052 fix. by Gregory P. Smith · 13 years ago
  31. e9b7cab Another issue #8052 bugfix (related to previous commit). by Gregory P. Smith · 13 years ago
  32. e3f7848 Bugfix for issue #8052 fix on *BSD variants. by Gregory P. Smith · 13 years ago
  33. 8facece Fixes issue #8052: The posix subprocess module's close_fds behavior was by Gregory P. Smith · 13 years ago
  34. 12fdca5 Avoid the compiler warning about the unused return value. by Gregory P. Smith · 13 years ago
  35. fc1b6f0 Fix the _io module leaking references when a sub-interpreter is created. by Antoine Pitrou · 13 years ago
  36. acd5f7b #13665: s/string/bytes/ in error message. by Ezio Melotti · 13 years ago
  37. 2f828f2 Test running of code in a sub-interpreter (prelude to issue #6531). by Antoine Pitrou · 13 years ago
  38. 366999a Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by by Charles-François Natali · 13 years ago
  39. 667d75d Don't redefine _GNU_SOURCE if it's already defined. by Ross Lagerwall · 13 years ago
  40. 031bf95 Issue #11006: Don't issue low level warning in subprocess when pipe2() fails. by Ross Lagerwall · 13 years ago
  41. bd206e2 Handle correctly _Py_fopen() error: don't replace the exception by Victor Stinner · 13 years ago
  42. e83f899 Issue #13530: Document os.lseek() result by Victor Stinner · 13 years ago
  43. 136ea49 Issue #10951: Fix a compiler warning in timemodule.c by Victor Stinner · 13 years ago
  44. 94ba691 main() now displays an error message before exiting if a command line argument by Victor Stinner · 13 years ago
  45. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  46. 10db4de Issue #4028: Make multiprocessing build on SunOS. by Charles-François Natali · 13 years ago
  47. 3bfc65a Issue #13505: Make pickling of bytes object compatible with Python 2. by Alexandre Vassalotti · 13 years ago
  48. 0e686cb Fix docstring typo. by Florent Xicluna · 13 years ago
  49. 720f34a Issue #5905: time.strftime() is now using the locale encoding, instead of by Victor Stinner · 13 years ago
  50. 6613c18 Issue #13415: Test in configure if unsetenv() has a return value or not. by Charles-François Natali · 13 years ago
  51. 06403cf decref correct object by Benjamin Peterson · 13 years ago
  52. 4bb867d plug refleak by Benjamin Peterson · 13 years ago
  53. 116d6b9 Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. by Antoine Pitrou · 13 years ago
  54. 60b385e Issue #13415: os.unsetenv() doesn't ignore errors anymore. by Victor Stinner · 13 years ago
  55. ab1d16b Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() by Victor Stinner · 13 years ago
  56. 58fcf9f Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 13 years ago
  57. 992d9e0 Fix few typos. by Florent Xicluna · 13 years ago
  58. 98d2c0a #13379: update Unicode version in unicodedata docstrings and comments. by Ezio Melotti · 13 years ago
  59. dcfde5a Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. by Ross Lagerwall · 13 years ago
  60. 7ab4192 Issue #12342: Improve _tkinter error message on unencodable character by Victor Stinner · 13 years ago
  61. b3bc7e7 Issue #10570: curses.putp() is now expecting a byte string, instead of a by Victor Stinner · 13 years ago
  62. 2662133 Issue #10570: curses.tigetstr() is now expecting a byte string, instead of a by Victor Stinner · 13 years ago
  63. 91d5193 Closes #2892: preserve iterparse events in case of SyntaxError. by Florent Xicluna · 13 years ago
  64. c45fb25 Issue #13255: wrong docstrings in array module. by Florent Xicluna · 13 years ago
  65. 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
  66. 8d91d45 Issue #10653: Fix time.strftime() on Windows, check for invalid format strings by Victor Stinner · 13 years ago
  67. c1f32ca Issue #10653: On Windows, use strftime() instead of wcsftime() because by Victor Stinner · 13 years ago
  68. d41a98b Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 13 years ago
  69. 42c28cd Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
  70. ed8ba14 Remove all other uses of the C tolower()/toupper() which could break with a Turkish locale. by Antoine Pitrou · 13 years ago
  71. 1665d2c Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. by Antoine Pitrou · 13 years ago
  72. 1e44fec Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 13 years ago
  73. ffd41d9 Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  74. 1efb33a Issue #12881: ctypes: Fix segfault with large structure field names. by Meador Inge · 13 years ago
  75. d8c347a Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  76. 5a4a109 Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas by Charles-François Natali · 13 years ago
  77. b86ecf4 Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. by Meador Inge · 13 years ago
  78. b2f6bc7 Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks Stefan Krah. by Mark Dickinson · 13 years ago
  79. adde86d fix compiler compliant about \0 not being an opcode by Benjamin Peterson · 13 years ago
  80. 4507e64 Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor was actually received by Jesus Cea · 13 years ago
  81. bbe46d6 Issue #12483: ctypes: Fix a crash when the destruction of a callback by Amaury Forgeot d'Arc · 13 years ago
  82. ab7060e Close #12950: multiprocessing "test_fd_transfer" fails under OpenIndiana by Jesus Cea · 13 years ago
  83. f22913b cast to getter by Benjamin Peterson · 13 years ago
  84. f6f3a35 add a __dict__ descr for IOBase (closes #12878) by Benjamin Peterson · 13 years ago
  85. 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
  86. faecc38 Issue #11241: subclasses of ctypes.Array can now be subclassed. by Amaury Forgeot d'Arc · 13 years ago
  87. 326e189 Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to by Amaury Forgeot d'Arc · 13 years ago
  88. 55549ec Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in by Antoine Pitrou · 13 years ago
  89. 82be19f Issue #11564: Avoid crashes when trying to pickle huge objects or containers by Antoine Pitrou · 13 years ago
  90. aa26b27 Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is by Charles-François Natali · 13 years ago
  91. 524148a Issue #12839: Fix crash in zlib module due to version mismatch. by Nadeem Vawda · 13 years ago
  92. bcb39d4 Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe. by Antoine Pitrou · 13 years ago
  93. e05565e Issue #12213: Fix a buffering bug with interleaved reads and writes that by Antoine Pitrou · 13 years ago
  94. 388c945 #12725: fix working. Patch by Ben Hayden. by Ezio Melotti · 13 years ago
  95. f6c7a85 Issue #12687: Fix a possible buffering bug when unpickling text mode (protocol 0, mostly) pickles. by Antoine Pitrou · 13 years ago
  96. fc9bbd1 dosmodule is, thankfully, no more by Benjamin Peterson · 13 years ago
  97. d98646e Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is by Ross Lagerwall · 13 years ago
  98. e96ec68 Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (without by Antoine Pitrou · 13 years ago
  99. d460a76 - Issue #10309: Define _GNU_SOURCE so that mremap() gets the proper by Barry Warsaw · 13 years ago
  100. 8391cf4 Issue #11321: Fix a crash with multiple imports of the _pickle module when by Antoine Pitrou · 13 years ago