1. 049242b Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode. by Antoine Pitrou · 12 years ago
  2. d311374 Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode. by Antoine Pitrou · 12 years ago
  3. 40e0f35 Fix comparison bug with 'rc' versions in packaging.version (#11841). by Éric Araujo · 12 years ago
  4. 70d2717 Issue #13521: dict.setdefault() now does only one lookup for the given key, making it "atomic" for many purposes. by Antoine Pitrou · 12 years ago
  5. e965d97 Issue #13521: dict.setdefault() now does only one lookup for the given key, making it "atomic" for many purposes. by Antoine Pitrou · 12 years ago
  6. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 12 years ago
  7. cda6b6d #14081: The sep and maxsplit parameter to str.split, bytes.split, and bytearray.split may now be passed as keyword arguments. by Ezio Melotti · 12 years ago
  8. 7d32e7e Port the #6884 fix to packaging by Éric Araujo · 12 years ago
  9. f716545 Merge from 3.2 by Éric Araujo · 12 years ago
  10. e7295a7 Add news entry for previous commit by Éric Araujo · 12 years ago
  11. c071a61 Merge 3.2 by Éric Araujo · 12 years ago
  12. 2e0a0e1 Fix long-standing bugs with MANIFEST.in parsing on Windows (#6884). by Éric Araujo · 12 years ago
  13. 9a2d99e - Issue #10181: New memoryview implementation fixes multiple ownership by Stefan Krah · 12 years ago
  14. afe05bd Bump version to 3.2.3rc1. by Georg Brandl · 12 years ago
  15. cf1c833 Issue #14084: Fix a file descriptor leak when importing a module with a bad encoding. by Antoine Pitrou · 12 years ago
  16. 4f22a8d Issue #14084: Fix a file descriptor leak when importing a module with a bad encoding. by Antoine Pitrou · 12 years ago
  17. 6721149 Merge: #14053: Fix "make patchcheck" to work with MQ. by Nadeem Vawda · 12 years ago
  18. 9f64f73 Issue #14053: Fix "make patchcheck" to work with MQ. by Nadeem Vawda · 12 years ago
  19. 7ef825f merge with 3.2 by Georg Brandl · 12 years ago
  20. c9a4207 Remove reST markup from --help output. Also: O(n**2) is dict construction, not single insertion. by Georg Brandl · 12 years ago
  21. c9f54cf enable hash randomization by default by Benjamin Peterson · 12 years ago
  22. dc4170c merge 2.6 by Martin v. Löwis · 12 years ago
  23. dbd3f61 Issue #6807: Run msisupport.mak earlier. by Martin v. Löwis · 12 years ago
  24. f9caee9 merge 3.2 by Martin v. Löwis · 12 years ago
  25. 26bb3cf Issue #10580: Minor grammar change in Windows installer. by Martin v. Löwis · 12 years ago
  26. 8b24506 Merge branch '3.2' by Petri Lehtinen · 12 years ago
  27. 4fe85ab sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures by Petri Lehtinen · 12 years ago
  28. 307da2b Merge the HTMLParser fix with 3.2. by Ezio Melotti · 12 years ago
  29. 29877e8 HTMLParser is now able to handle slashes in the start tag. by Ezio Melotti · 12 years ago
  30. 71f660e update to Unicode 6.1 by Benjamin Peterson · 12 years ago
  31. 2fb477c Merge 3.2: Issue #13703 plus some related test suite fixes. by Georg Brandl · 12 years ago
  32. 09562b4 Fix typo. by Georg Brandl · 12 years ago
  33. 06b1c4f Fix typo. by Georg Brandl · 12 years ago
  34. 09a7c72 Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  35. 2daf6ae Issue #13703: add a way to randomize the hash values of basic types (str, bytes, datetime) by Georg Brandl · 12 years ago
  36. c229e6e Issue #14040: Remove rarely used file name suffixes for C extensions (under POSIX mainly). by Antoine Pitrou · 12 years ago
  37. ea6b4d5 Issue #13641: Decoding functions in the base64 module now accept ASCII-only unicode strings. by Antoine Pitrou · 12 years ago
  38. 8eb1269 add generic implementation of a __dict__ descriptor for C types by Benjamin Peterson · 12 years ago
  39. c541f8e Issue #14043: Speed up importlib's _FileFinder by at least 8x, and add a new importlib.invalidate_caches() function. by Antoine Pitrou · 12 years ago
  40. 01d7eba allow arbitrary attributes on classmethod and staticmethod (closes #14051) by Benjamin Peterson · 12 years ago
  41. 3ccc918 Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer by Charles-François Natali · 12 years ago
  42. cd96b4f Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer by Charles-François Natali · 12 years ago
  43. ec1712a Issue #14001: CVE-2012-0845: xmlrpc: Fix an endless loop in SimpleXMLRPCServer by Charles-François Natali · 12 years ago
  44. aa2c670 Merge branch '3.2' by Petri Lehtinen · 12 years ago
  45. c86d9e2 Fix a variable scoping error in an sqlite3 test by Petri Lehtinen · 12 years ago
  46. ba17fe2 Have importlib use os.replace() for atomic renaming. by Brett Cannon · 12 years ago
  47. 22e7c88 Merge by Brett Cannon · 12 years ago
  48. 3b1a06c importlib.__import__() now raises ValueError when level < 0. by Brett Cannon · 12 years ago
  49. 17f1be6 Merge branch '3.2' by Petri Lehtinen · 12 years ago
  50. b389022 sqlite3: Fix documentation errors concerning Cursor.rowcount by Petri Lehtinen · 12 years ago
  51. 5b791fb Issue #2489: Fix bug in _copy loop that could consume 100% cpu on EOF. by Gregory P. Smith · 12 years ago
  52. 58e7c1d NEWS entry for previous commit. by Gregory P. Smith · 12 years ago
  53. 04d4ee4 Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). by Antoine Pitrou · 12 years ago
  54. 2f5a163 Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). by Antoine Pitrou · 12 years ago
  55. be2cf33 Merge branch '3.2' by Petri Lehtinen · 12 years ago
  56. 1ca9395 Issue #13491: Fix many errors in sqlite3 documentation by Petri Lehtinen · 12 years ago
  57. 4575afc Fix parsing of packaging’s build_ext --libraries option (#1326113) by Éric Araujo · 12 years ago
  58. 1d175f7 Merge fixes for #1326113 and #12297 from 3.2 by Éric Araujo · 12 years ago
  59. b2f5c0a Fix parsing of build_ext --libraries option (#1326113) by Éric Araujo · 12 years ago
  60. 8b4d64f Move NEWS entry to correct section. by Antoine Pitrou · 12 years ago
  61. 552be9b Issue #13020: Fix a reference leak when allocating a structsequence object fails. by Antoine Pitrou · 12 years ago
  62. 37784ba Issue #13020: Fix a reference leak when allocating a structsequence object fails. by Antoine Pitrou · 12 years ago
  63. 15af7b4 Issue #13015: Fix a possible reference leak in defaultdict.__repr__. by Antoine Pitrou · 12 years ago
  64. f5f1fe0 Issue #13015: Fix a possible reference leak in defaultdict.__repr__. by Antoine Pitrou · 12 years ago
  65. 06b57ef Issue #10287: nntplib now queries the server's CAPABILITIES first before sending MODE READER, and only sends it if not already in READER mode. by Antoine Pitrou · 12 years ago
  66. 7113562 Issue #10287: nntplib now queries the server's CAPABILITIES first before sending MODE READER, and only sends it if not already in READER mode. by Antoine Pitrou · 12 years ago
  67. ffeee35 Issue #13979: Fix ctypes.util.find_library ldconfig regex by Meador Inge · 12 years ago
  68. a72a98f Issue #13988: cElementTree is deprecated and the _elementtree accelerator is automatically used whenever available. by Florent Xicluna · 12 years ago
  69. d1c7b1a #13993: merge with 3.2. by Ezio Melotti · 12 years ago
  70. 5211ffe #13993: HTMLParser is now able to handle broken end tags when strict=False. by Ezio Melotti · 12 years ago
  71. db66310 Issue #13930: Adds ability for 2to3 to write its output to a different by Gregory P. Smith · 12 years ago
  72. 58f23ff Issue #13930: Adds ability for 2to3 to write its output to a different by Gregory P. Smith · 12 years ago
  73. c7551a1 Merge branch '3.2' by Petri Lehtinen · 12 years ago
  74. 51d04d1 Fix sqlite3.Connection.iterdump on tables/fields with reserved names or quotes by Petri Lehtinen · 12 years ago
  75. 425b8e8 Issue #10287: nntplib now queries the server's CAPABILITIES again after authenticating (since the result may change, according to RFC 4643). by Antoine Pitrou · 12 years ago
  76. 54411c1 Issue #10287: nntplib now queries the server's CAPABILITIES again after authenticating (since the result may change, according to RFC 4643). by Antoine Pitrou · 12 years ago
  77. b9df745 Port the fix for #13193 to packaging by Éric Araujo · 12 years ago
  78. a9d2b64 Merge fixes for #13193 and FAQ from 3.2 by Éric Araujo · 12 years ago
  79. 9ce366a Fix distutils.filelist.FileList under Windows (#13193). by Éric Araujo · 12 years ago
  80. d1a1071 Merge: #13989: Document that GzipFile does not support text mode. by Nadeem Vawda · 12 years ago
  81. 30d94b7 Issue #13989: Document that GzipFile does not support text mode. by Nadeem Vawda · 12 years ago
  82. 7347df1 Issue #13590: merge by Ned Deily · 12 years ago
  83. 9937748 Issue #13590: On OS X 10.7 and 10.6 with Xcode 4.2, building by Ned Deily · 12 years ago
  84. 176630e #13960: merge with 3.2. by Ezio Melotti · 12 years ago
  85. fa3702d #13960: HTMLParser is now able to handle broken comments when strict=False. by Ezio Melotti · 12 years ago
  86. bc35beb Undocument and clean up sqlite3.OptimizedUnicode by Petri Lehtinen · 12 years ago
  87. f0f9679 merge from 3.2 by Senthil Kumaran · 12 years ago
  88. 5b14d73 Issue #9021 - Introduce copy module better. Doc changes suggested by Terry by Senthil Kumaran · 12 years ago
  89. 0bfa963 merged from 3.2 by Senthil Kumaran · 12 years ago
  90. 6e13f13 Fix Issue #6005: Examples in the socket library documentation use sendall, by Senthil Kumaran · 12 years ago
  91. 32b66be Clarify a NEWS entry. by Brett Cannon · 12 years ago
  92. b4e63b3 Use the cwd when the empty string is found in sys.path. This leads to by Brett Cannon · 12 years ago
  93. bcf2b59 Issue #13609: Add two functions to query the terminal size: by Antoine Pitrou · 12 years ago
  94. 72476ea Issue #13845: Fix NEWS entry, the change is specific to Windows by Victor Stinner · 12 years ago
  95. ed4a8fc Issue #8184: multiprocessing: On Windows, don't set SO_REUSEADDR on Connection by Charles-François Natali · 12 years ago
  96. 09225b7 Issue #13845: time.time() now uses GetSystemTimeAsFileTime() instead of ftime() by Victor Stinner · 12 years ago
  97. 8b30201 Issue #13846: Add time.monotonic(), monotonic clock. by Victor Stinner · 12 years ago
  98. 96356d4 Merge branch '3.2' by Petri Lehtinen · 12 years ago
  99. 4a84f58 Issue #10811: Fix recursive usage of cursors. Instead of crashing, raise a ProgrammingError now. by Petri Lehtinen · 13 years ago
  100. 7794090 Following Nick's suggestion, rename posix.fdlistdir() to posix.flistdir(), to by Charles-François Natali · 12 years ago