1. 84ed8f7 Add entries for distutils2 contributors (their patches are in packaging) by Éric Araujo · 13 years ago
  2. c178d9b Merge 3.2. Remove duplicate ACKS and reorder slightly to prevent future dups. by Florent Xicluna · 13 years ago
  3. 490062b Remove duplicate ACKS. by Florent Xicluna · 13 years ago
  4. 28a0820 Issue #13191: typo in argparse docs by Eli Bendersky · 13 years ago
  5. a7795db Issue #13191: typo in argparse docs by Eli Bendersky · 13 years ago
  6. 6e9002c Issue #13365: correct an error in the documentation of str.expandtabs. Patch by John Feuerstein by Eli Bendersky · 13 years ago
  7. c2c8960 Issue #13365: correct an error in the documentation of str.expandtabs by Eli Bendersky · 13 years ago
  8. 0215724 Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely by Antoine Pitrou · 13 years ago
  9. a365113 Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely by Antoine Pitrou · 13 years ago
  10. c9f3846 Issue #3067: Fix the error raised by locale.setlocale() by Petri Lehtinen · 13 years ago
  11. 3c85fe0 Issue #3067: Fix the error raised by locale.setlocale() by Petri Lehtinen · 13 years ago
  12. 23e1ecb Issue #13324: fcntlmodule: Add the F_NOCACHE flag. Patch by Alex Stewart. by Charles-François Natali · 13 years ago
  13. 316f573 Issue #13304: Skip test case if user site-packages disabled (-s or by Ned Deily · 13 years ago
  14. d462119 Issue #5661: Add a test for ECONNRESET/EPIPE handling to test_asyncore. Patch by Charles-François Natali · 13 years ago
  15. 3664568 Issue #13201: equality for range objects is now based on equality of the underlying sequences. Thanks Sven Marnach for the patch. by Mark Dickinson · 13 years ago
  16. 70d86bd Issue 13243: Rename _Py_identifier to _Py_IDENTIFIER in asdl_c.py by Meador Inge · 13 years ago
  17. f89ebdc Fix missing imports in setup scripts generated by packaging (#13205). by Éric Araujo · 13 years ago
  18. c822f08 Merge #11751 from 3.2 by Éric Araujo · 13 years ago
  19. 2336c85 Increase test coverage for distutils.filelist (#11751). by Éric Araujo · 13 years ago
  20. 6ebea15 Merge fixes for #10526, #10359, #11254, #9100 and the bug without number by Éric Araujo · 13 years ago
  21. 47a4521 Fix distutils byte-compilation to comply with PEP 3147 (#11254). by Éric Araujo · 13 years ago
  22. 47413c1 Issue #10141: socket: add SocketCAN (PF_CAN) support. Initial patch by Matthias by Charles-François Natali · 13 years ago
  23. 1665d2c Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. by Antoine Pitrou · 13 years ago
  24. 0fc80c0 Add John to ACKS by Antoine Pitrou · 13 years ago
  25. ffd41d9 Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  26. 8e4dd08 Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. by Antoine Pitrou · 13 years ago
  27. 5a688db Issue #7689: Allow pickling of dynamically created classes when their by Antoine Pitrou · 13 years ago
  28. 1d30db4 merge #4147: minidom's toprettyxml no longer adds whitespace to text nodes. by R David Murray · 13 years ago
  29. 791744b #4147: minidom's toprettyxml no longer adds whitespace to text nodes. by R David Murray · 13 years ago
  30. 9624a76 Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas by Charles-François Natali · 13 years ago
  31. 5a4a109 Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas by Charles-François Natali · 13 years ago
  32. dfb866d Enhance Py_ARRAY_LENGTH(): fail at build time if the argument is not an array by Victor Stinner · 13 years ago
  33. 48d4949 Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. by Meador Inge · 13 years ago
  34. b86ecf4 Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. by Meador Inge · 13 years ago
  35. 86ca04c Issue #9871: Prevent IDLE 3 crash when given byte stings by Ned Deily · 13 years ago
  36. 7974642 Issue #9871: Prevent IDLE 3 crash when given byte stings by Ned Deily · 13 years ago
  37. 6a8c8a8 #12888: merge with 3.2. by Ezio Melotti · 13 years ago
  38. d9e0b06 #12888: Fix a bug in HTMLParser.unescape that prevented it to escape more than 128 entities. Patch by Peter Otten. by Ezio Melotti · 13 years ago
  39. 44c6ef5 Merge: #12839: Fix crash in zlib module due to version mismatch. by Nadeem Vawda · 13 years ago
  40. 524148a Issue #12839: Fix crash in zlib module due to version mismatch. by Nadeem Vawda · 13 years ago
  41. 4fd1e6a Issue #12803: SSLContext.load_cert_chain() now accepts a password argument by Antoine Pitrou · 13 years ago
  42. b09f25e Issue12810: Remove check for negative unsigned value in socketmodule.c. Patch by Charles-François Natali · 13 years ago
  43. 710d27e Close #12826: fix socketmodule.c for OpenBSD, include sys/uio.h by Victor Stinner · 13 years ago
  44. c4a2871 Fix #12811 by closing files promptly in tabnanny.check. Patch by Anthony Briggs. by Nick Coghlan · 13 years ago
  45. 3d3bc81 Issue #12678: Fix distutils sdist test on Windows. by Nadeem Vawda · 13 years ago
  46. ad548b8 Merge fixes for #9860, #11104/#8688 and #12331 from 3.2 by Éric Araujo · 13 years ago
  47. ab7c1b3 Fix regression with distutils MANIFEST handing (#11104, #8688). by Éric Araujo · 13 years ago
  48. def3543 Issue #12464: tempfile.TemporaryDirectory.cleanup() should not follow symlinks: by Charles-François Natali · 13 years ago
  49. abe9dc3 Issue 12514: Use try/finally to assure that timeit restores GC when done. by Raymond Hettinger · 13 years ago
  50. 3a081f5 Issue 12514: Use try/finally to assure that timeit restores GC when done. by Raymond Hettinger · 13 years ago
  51. acd9f7c Issue #11784: Improve multiprocessing.Process.join() documentation. Patch by by Charles-François Natali · 13 years ago
  52. dc1d548 Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling. by Charles-François Natali · 13 years ago
  53. 749400a Issue #12560: Build libpython.so on OpenBSD. Patch by Stefan Sperling. by Charles-François Natali · 13 years ago
  54. d649480 Issue #12551: Provide a get_channel_binding() method on SSL sockets so as by Antoine Pitrou · 13 years ago
  55. dac7de3 Issue #12587: Correct faulty test file and reference in test_tokenize. by Ned Deily · 13 years ago
  56. 2ea6fcc Issue #12587: Correct faulty test file and reference in test_tokenize. by Ned Deily · 13 years ago
  57. c12469d Merge from 3.2. by Eric V. Smith · 13 years ago
  58. 12ebefc Closes #12579. Positional fields with str.format_map() now raise a ValueError instead of SystemError. by Eric V. Smith · 13 years ago
  59. a7878b7 Close #6755: Add get_wch() method to curses.window class by Victor Stinner · 13 years ago
  60. d93da2b (merge 3.2) Close #4376: ctypes now supports nested structures in a endian by Victor Stinner · 13 years ago
  61. 6636121 Close #4376: ctypes now supports nested structures in a endian different than by Victor Stinner · 13 years ago
  62. 093c8e4 Issue #12149: Update the method cache after a type's dictionnary gets by Antoine Pitrou · 13 years ago
  63. 84f1b17 Issue #12149: Update the method cache after a type's dictionnary gets by Antoine Pitrou · 13 years ago
  64. 4468e55 Close file handles in a timely manner in packaging.database (#12504). by Éric Araujo · 13 years ago
  65. ce5fe83 Factor out code used by packaging commands for HTTP requests (#12169). by Éric Araujo · 13 years ago
  66. 6a4ffd7 Fix #11512. Add an initial test suite for the cgitb, providing 75% coverage. by Brian Curtin · 13 years ago
  67. db4120b merge #12147: make send_message correctly handle Sender and Resent- headers. by R David Murray · 13 years ago
  68. ac4e5ab #12147: make send_message correctly handle Sender and Resent- headers. by R David Murray · 13 years ago
  69. 8b56c4b Issue #8746: Correct faulty configure checks so that os.chflags() and by Ned Deily · 13 years ago
  70. 3eb67d5 Issue #8746: Correct faulty configure checks so that os.chflags() and by Ned Deily · 13 years ago
  71. 29e2c64 Issue #4608: urllib.request.urlopen does not return an iterable object by Raymond Hettinger · 13 years ago
  72. 038018a Issue #4608: urllib.request.urlopen does not return an iterable object by Raymond Hettinger · 13 years ago
  73. fcb17e1 Merge #10206: add test for previously fixed bug. by R David Murray · 13 years ago
  74. e697e37 #10206: add test for previously fixed bug. by R David Murray · 13 years ago
  75. 3b83ff6 ACKS update for devguide patch (closes #12278) by Nick Coghlan · 13 years ago
  76. bc18532 Branch merge by Éric Araujo · 13 years ago
  77. 3605030 Fix assorted bugs in packaging.util.cfg_to_args (#11595). by Éric Araujo · 13 years ago
  78. 49aaad3 merge heads by Benjamin Peterson · 13 years ago
  79. ae10b32 merge 3.2 (#12009) by Benjamin Peterson · 13 years ago
  80. 9aa68e4 merge 3.1 (#12009) by Benjamin Peterson · 13 years ago
  81. 1df0f21 fix regression in netrc comment handling (closes #12009) by Benjamin Peterson · 13 years ago
  82. fa6cfbc Don’t try to install something when running from uninstalled source (#12246). by Éric Araujo · 13 years ago
  83. 4dd453c Issue #12021: Make mmap's read() method argument optional. Patch by Petri by Charles-François Natali · 13 years ago
  84. c072516 Remove duplicate entry for Josip by Éric Araujo · 13 years ago
  85. 1b5b9d7 (Merge 3.2) Close #12085: Fix an attribute error in subprocess.Popen destructor by Victor Stinner · 13 years ago
  86. 87b9bc3 Close #12085: Fix an attribute error in subprocess.Popen destructor if the by Victor Stinner · 13 years ago
  87. 62ecb6a Tidy up the additional string module tests added at the Pycon sprints (closes #11505) by Nick Coghlan · 13 years ago
  88. ebbb3b7 Update the ACKS file with the packaging contributors by Alexis Metaireau · 13 years ago
  89. 59a3338 Issue #985064: Make plistlib more resilient to faulty input plists. by Ned Deily · 13 years ago
  90. 32b5cb0 Issue #985064: Make plistlib more resilient to faulty input plists. by Ned Deily · 13 years ago
  91. b8e59f7 Issue #985064: Make plistlib more resilient to faulty input plists. by Ned Deily · 13 years ago
  92. 42fc33a add ack from 2.7 by Benjamin Peterson · 13 years ago
  93. 3486a98 Issue #9971: Write an optimized implementation of BufferedReader.readinto(). by Antoine Pitrou · 13 years ago
  94. 3cade99 Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in by Antoine Pitrou · 13 years ago
  95. 1be815a Issue #8498: In socket.accept(), allow to specify 0 as a backlog value in by Antoine Pitrou · 13 years ago
  96. d7f12f3 Merge: Issue #11927: SMTP_SSL now uses port 465 by default as documented. by Antoine Pitrou · 13 years ago
  97. 5bcc50c Merge: Issue #11927: SMTP_SSL now uses port 465 by default as documented. by Antoine Pitrou · 13 years ago
  98. c1d5206 Issue #11927: SMTP_SSL now uses port 465 by default as documented. Patch by Kasun Herath. by Antoine Pitrou · 13 years ago
  99. 97c3eb4 Closes Issue 11916: Add a number of MacOSX specific definitions to the errno module. by Ronald Oussoren · 13 years ago
  100. ff9bfca Issue #12000: When a SSL certificate has a subjectAltName without any by Antoine Pitrou · 13 years ago