1. 607e31e Fix Issue #6005: Examples in the socket library documentation use sendall, by Senthil Kumaran · 14 years ago
  2. c7fd523 Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Petri Lehtinen · 14 years ago
  3. 2c8bf04 Issue #10881: Fix test_site failures with OS X framework builds. by Ned Deily · 14 years ago
  4. adb87e2 Issue 964437 Make IDLE help window non-modal. by Terry Jan Reedy · 14 years ago
  5. 61c9534 Issue #13933: IDLE auto-complete did not work with some imported by Ned Deily · 14 years ago
  6. fbc56fd Issue #13901: Prevent test_distutils failures on OS X with --enable-shared. by Ned Deily · 14 years ago
  7. fe6f9d0 Document absoluteness of sys.executable by Petri Lehtinen · 14 years ago
  8. 0518f47 sqlite3: Handle strings with embedded zeros correctly by Petri Lehtinen · 14 years ago
  9. b98000a #13506 Add '' to path for interactive interpreter by adding with_cwd parameter by Terry Jan Reedy · 14 years ago
  10. 88c51e8 Issue #13806: The size check in audioop decompression functions was too strict and could reject valid compressed data. by Antoine Pitrou · 14 years ago
  11. 374b4ea Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 14 years ago
  12. d358e05 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 14 years ago
  13. 64b2b6a Issue #13883: Document all platforms PYTHONCASEOK works on. by Brett Cannon · 14 years ago
  14. a1f948b Issue #12501: merge the discordant NEWS entries. by Florent Xicluna · 14 years ago
  15. d1c818a Issue #11235: Fix OverflowError when trying to import a source file whose modification time doesn't fit in a 32-bit timestamp. by Antoine Pitrou · 14 years ago
  16. b05f91d NEWS entry for Issue6631 by Senthil Kumaran · 14 years ago
  17. da747c3 Issue #2134: Clarify token.OP handling rationale in tokenize documentation. by Meador Inge · 14 years ago
  18. d7664de Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects. by Nadeem Vawda · 14 years ago
  19. 4a8ba19 Closes #13803: Under Solaris, distutils doesn't include bitness in the directory name by Jesus Cea · 14 years ago
  20. 3b6a314 Issue #13589: Fix some serialization primitives in the aifc module. by Antoine Pitrou · 14 years ago
  21. 23fbd8c Berkeley DB: Erratic behaviour of "DBEnv->rep_elect()" because a typo by Jesus Cea · 14 years ago
  22. dee76e6 Issue #13774: json: Fix a SystemError when a bogus encoding is passed to by Amaury Forgeot d'Arc · 14 years ago
  23. bcd833f - Issue #13642: Unquote before b64encoding user:password during Basic by Senthil Kumaran · 14 years ago
  24. d76088d Issue #13636: Weak ciphers are now disabled by default in the ssl module by Antoine Pitrou · 14 years ago
  25. 3aa59e3 Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by by Charles-François Natali · 14 years ago
  26. 042370e Issue #11638: Adding test to ensure .tar.gz files can be generated by sdist command with unicode metadata, based on David Barnett's patch. by Jason R. Coombs · 14 years ago
  27. 84c18aa Update News entry. by Senthil Kumaran · 14 years ago
  28. 7d4d074 Issue #13639: Accept unicode filenames in tarfile.open(mode="w|gz"). by Lars Gustäbel · 14 years ago
  29. b8572a1 Issue #1785: Fix inspect and pydoc with misbehaving descriptors. by Antoine Pitrou · 14 years ago
  30. 99cff3f Issue #13628: python-gdb.py is now able to retrieve more frames in the Python by Victor Stinner · 14 years ago
  31. 7a3d8ae Issue #7502: Fix equality comparison for DocTestCase instances. by Antoine Pitrou · 14 years ago
  32. 4161630 Issue #11870: threading: Properly reinitialize threads internal locks and by Charles-François Natali · 14 years ago
  33. f3d35f0 Issue #8035: urllib: Fix a bug where the client could remain stuck after a by Charles-François Natali · 14 years ago
  34. 5b4b2da Fix the fix for issue #12149: it was incorrect, although it had the side by Antoine Pitrou · 14 years ago
  35. d8fdbad Issue #4625: add NEWS entry. by Ned Deily · 14 years ago
  36. f537702 Issue #13573: The csv.writer now uses the repr() for floats rather than str(). by Raymond Hettinger · 14 years ago
  37. 4bf21e2 Issue #13546: Fixed an overflow issue that could crash the intepreter when by Amaury Forgeot d'Arc · 14 years ago
  38. 9a38863 Correctly detect bzip2 compressed streams with blocksizes other than 900k. by Lars Gustäbel · 14 years ago
  39. 5295718 Issue #13513: IOBase docs incorrectly link to the readline module by Meador Inge · 14 years ago
  40. 49e49a2 Issue #13439: Fix many errors in turtle docstrings. by Petri Lehtinen · 14 years ago
  41. a5d5bb9 Issue #12856: Ensure child processes do not inherit the parent's random seed for filename generation in the tempfile module. by Antoine Pitrou · 14 years ago
  42. aa1c967 Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. by Antoine Pitrou · 14 years ago
  43. 53853c3 Issue #13415: os.unsetenv() doesn't ignore errors anymore. by Victor Stinner · 14 years ago
  44. 5aa7df3 Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 14 years ago
  45. 00dc60b #13358: HTMLParser now calls handle_data only once for each CDATA. by Ezio Melotti · 14 years ago
  46. 93bbb6a #4147: minidom's toprettyxml no longer adds whitespace around a text node when it is the only child of an element. Initial patch by Dan Kenigsberg. by Ezio Melotti · 14 years ago
  47. 174c4f8 Issue #8793: Prevent IDLE crash in 2.7 when given strings with by Ned Deily · 14 years ago
  48. 3040254 Issue #13333: The UTF-7 decoder now accepts lone surrogates by Antoine Pitrou · 14 years ago
  49. 0f1571c #1745761, #755670, #13357, #12629, #1200313: improve attribute handling in HTMLParser. by Ezio Melotti · 14 years ago
  50. 667383c Issue #13193: Fix distutils.filelist.FileList under Windows. The by Antoine Pitrou · 14 years ago
  51. 6a570d6 Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely by Antoine Pitrou · 14 years ago
  52. cb65f32 Partial patch for issue #11812: Take care of test_telnetlib.py by Jesus Cea · 14 years ago
  53. 71094b5 Solved a potential deadlock in test_telnetlib.py. Related to issue #11812 by Jesus Cea · 14 years ago
  54. 3b9d92a Revert "Accept None as start and stop parameters for list.index() and tuple.index()" by Petri Lehtinen · 14 years ago
  55. a5ae1f0 remove py3k warning for callable by Benjamin Peterson · 14 years ago
  56. 819d8d4 Accept None as start and stop parameters for list.index() and tuple.index() by Petri Lehtinen · 14 years ago
  57. 416ecff Issue #3067: Enhance the documentation and docstring of locale.setlocale() by Petri Lehtinen · 14 years ago
  58. 49aa72e Fix Maildir initialization so that maildir contents are read correctly. by Petri Lehtinen · 14 years ago
  59. 5f761d7 Issue #13140: Fix the daemon_threads attribute of ThreadingMixIn. by Florent Xicluna · 14 years ago
  60. c4a11bd Missing NEWS entry in changeset e1dde980a92c by Florent Xicluna · 14 years ago
  61. 7e82b27 #670664: Fix HTMLParser to correctly handle the content of ``<script>...</script>`` and ``<style>...</style>``. by Ezio Melotti · 14 years ago
  62. 1aacd7b Issue #13304: Skip test case if user site-packages disabled (-s or by Ned Deily · 14 years ago
  63. 87e5855 Port to 2.7 - issue 10817 - Fix urlretrieve function to raise by Senthil Kumaran · 14 years ago
  64. 86d669b Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart. by Ned Deily · 14 years ago
  65. 8028dc2 Add Misc/NEWS entry for issue #10519 by Petri Lehtinen · 14 years ago
  66. 67d5d0e Closes #7334: close source files on ElementTree.parse and iterparse (partial backport of issue #10093 from 3.2). by Florent Xicluna · 14 years ago
  67. bf0cafa Oops, put fix news in the right section. by Barry Warsaw · 14 years ago
  68. be83698 - Issue #13218: Fix test_ssl failures on Debian/Ubuntu. by Barry Warsaw · 14 years ago
  69. 0c0d756 don't let a tuple msg be interpreted as arguments to AssertionError (closes #13268) by Benjamin Peterson · 14 years ago
  70. c515eba Updated NEWS with fix for 13232. by Vinay Sajip · 14 years ago
  71. 99e93d2 merge heads by Petri Lehtinen · 14 years ago
  72. 8ffbab8 Issue #13018: Fix reference leaks in error paths in dictobject.c. by Petri Lehtinen · 14 years ago
  73. 46f990e Issue #10332: multiprocessing: fix a race condition when a Pool is closed by Charles-François Natali · 14 years ago
  74. 8671157 Issue #13237: Rearrange subprocess module documentation to emphasise the convenience functions and commonly needed arguments by Nick Coghlan · 14 years ago
  75. df10d7c Issue #13141: Demonstrate recommended style for SocketServer examples. by Florent Xicluna · 14 years ago
  76. b21f51a Note that the #1548891 fix indirectly fixes shlex (#6988, #1170) by Éric Araujo · 14 years ago
  77. 5a77fe9 Issue #1548891: The cStringIO.StringIO() constructor now encodes unicode by Antoine Pitrou · 14 years ago
  78. 47fb192 Issue #9168: now smtpd is able to bind privileged port. by Florent Xicluna · 14 years ago
  79. 797b95b News entry for Issue12529 and Issue12604 by Senthil Kumaran · 14 years ago
  80. ddd4031 Fix closes Issue6090 - Raise a ValueError, instead of failing with unrelated by Senthil Kumaran · 14 years ago
  81. 7a15390 Fixes #10860: Handle empty port after port delimiter in httplib by Łukasz Langa · 14 years ago
  82. deb1ce7 Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are now available on Windows. by Nadeem Vawda · 14 years ago
  83. 323b5da Issue #7833: Ext. modules built using distutils on Windows no longer get a manifest by Mark Hammond · 14 years ago
  84. a7b0976 PyEval_CallObject requires a tuple of args (closes #13186) by Benjamin Peterson · 14 years ago
  85. 3624815 Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a linear-time one. by Nadeem Vawda · 14 years ago
  86. 40ab002 Issue #13156: Add an entry in Misc/NEWS. by Charles-François Natali · 14 years ago
  87. 017e535 Fix distutils’ check and register Unicode handling (#13114). by Éric Araujo · 14 years ago
  88. bd9d07c Issue #7425 and Issue #7367: add NEWS items. by Ned Deily · 14 years ago
  89. 9ffcbf7 Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 14 years ago
  90. ace2ccf Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. by Antoine Pitrou · 14 years ago
  91. 561a821 Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 14 years ago
  92. ad349a1 Issue #12881: ctypes: Fix segfault with large structure field names. by Meador Inge · 14 years ago
  93. 564f890 Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas by Charles-François Natali · 14 years ago
  94. fe15003 Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. by Meador Inge · 14 years ago
  95. a96b0d1 Backport issue #12973 itertools fix from 3.x. by Mark Dickinson · 14 years ago
  96. 63c22fa Issue #7732: Fix a crash on importing a module if a directory has the same name by Victor Stinner · 14 years ago
  97. 51b7198 Issue #12931: xmlrpclib now encodes Unicode URI to ISO-8859-1, instead of by Victor Stinner · 14 years ago
  98. c23484b Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor was actually received by Jesus Cea · 14 years ago
  99. 4ac5d2c Backport issue #12973 list_repeat fix from 3.x. by Mark Dickinson · 14 years ago
  100. dbbed04 Issue #12973: Fix int.__pow__ overflow checks that invoked undefined behaviour, thereby producing incorrect results on Clang. by Mark Dickinson · 14 years ago