1. 45c4375 Issue #12004: Fix an internal error in PyZipFile when writing an invalid by Serhiy Storchaka · 13 years ago
  2. 986a56c Issue #16953: Fix socket module compilation on platforms with HAVE_BROKEN_POLL. by Charles-François Natali · 13 years ago
  3. 4050792 #16154: fix some doctests in Doc/library. Patch by Ravi Sinha. by Ezio Melotti · 13 years ago
  4. fe8e6e7 #13899: \A, \Z, and \B now correctly match the A, Z, and B literals when used inside character classes (e.g. [A]). Patch by Matthew Barnett. by Ezio Melotti · 13 years ago
  5. 638fb9b Issue #16828: Fix error incorrectly raised by bz2.compress(''). by Nadeem Vawda · 13 years ago
  6. c7ce3f7 added Wolfgang Scherer to acknowledgements by Łukasz Langa · 13 years ago
  7. 3057469 Fixes issue #15803: incorrect `ConfigParser.items()` docstring by Łukasz Langa · 13 years ago
  8. 56ad5ed Issue #16443: Add docstrings to regular expression match objects. by Andrew Svetlov · 13 years ago
  9. dec59ec #16664: Add regression tests for glob's behaviour concerning "."-entries by Hynek Schlawack · 13 years ago
  10. 084daa2 Issue #16298: In HTTPResponse.read(), close the socket when there is no Content-Length and the incoming stream is finished. by Antoine Pitrou · 13 years ago
  11. 24457c9 Branch merge by Éric Araujo · 13 years ago
  12. 8b503c0 Fix setup.py register failure with invalid rst in description (#13614). by Éric Araujo · 13 years ago
  13. 62a0d6e Issue #16602: When a weakref's target was part of a long deallocation chain, the object could remain reachable through its weakref even though its refcount had dropped to zero. by Antoine Pitrou · 13 years ago
  14. d61926e Create ~/.pypirc securely (#13512). by Éric Araujo · 13 years ago
  15. 09974b4 Drop double newlines printed in some file iteration examples. by Andrew Svetlov · 13 years ago
  16. 057bcb4 #16549: Make json.tool work again on Python 3 and add tests. Initial patch by Berker Peksag and Serhiy Storchaka. by Ezio Melotti · 13 years ago
  17. 7c66319 #16306: Fix multiple error messages when unknown command line parameters where passed to the interpreter. Patch by Hieu Nguyen. by Ezio Melotti · 13 years ago
  18. 2cc3b4b #16152: fix tokenize to ignore whitespace at the end of the code when no newline is found. Patch by Ned Batchelder. by Ezio Melotti · 13 years ago
  19. 92c28ca #14897: Enhance error messages of struct.pack and struct.pack_into by Petri Lehtinen · 13 years ago
  20. 252cd0e #12890: don't emit <p> tags in text mode when logdir specified. by R David Murray · 13 years ago
  21. 837cd06 #16210: combine the two type() docs. Patch by Pete Sevander. by Ezio Melotti · 13 years ago
  22. ae247a5 Issue #16220: wsgiref now always calls close() on an iterable response. by Antoine Pitrou · 13 years ago
  23. abfc7df Issue #9583: Document startup option/environment interaction. by Andrew Svetlov · 13 years ago
  24. 2ef4584 Issue #14900: Distuguish call count and primitive call count in pstat output. by Andrew Svetlov · 13 years ago
  25. fc990e9 Closes #16112: platform.architecture does not correctly escape argument to /usr/bin/file by Jesus Cea · 13 years ago
  26. 83451a2 Fix Misc/ACKS alphabetic order by Jesus Cea · 13 years ago
  27. 09bf7a7 Closes #15897: zipimport.c doesn't check return value of fseek() by Jesus Cea · 13 years ago
  28. 56f37aa #15437, #15439: merge Doc/ACKS.txt with Misc/ACKS and modify Doc/about.rst accordingly. by Ezio Melotti · 13 years ago
  29. 3159cb5 #15676: Proper attribution in Misc/ACKS by Jesus Cea · 13 years ago
  30. 1d85745 Issue #15841: The readable(), writable() and seekable() methods of BytesIO by Antoine Pitrou · 13 years ago
  31. 6fb8fb1 #12776,#11839: call argparse type function only once. by R David Murray · 13 years ago
  32. 638d40b #15249: Mangle From lines correctly when body contains invalid bytes. by R David Murray · 13 years ago
  33. 9439f04 Issue #14954: Clarify the interaction of weak references and garbage collection. by Antoine Pitrou · 13 years ago
  34. c6fdafc #15199: Fix JavaScript's default MIME type to application/javascript by Petri Lehtinen · 13 years ago
  35. 75506e8 Issue #15726: Fix incorrect bounds checking in PyState_FindModule. by Antoine Pitrou · 13 years ago
  36. b47ea9a Issue #15615: Add some tests for the json module's handling of invalid input data. by Antoine Pitrou · 13 years ago
  37. fbd4f80 Issue #15444: Use proper spelling for non-ASCII contributor names. by Antoine Pitrou · 13 years ago
  38. 03b4d50 Issue #15424: Add a __sizeof__ implementation for array objects. by Meador Inge · 13 years ago
  39. eec6420 Issue #15501: Document exception classes in subprocess module. by Andrew Svetlov · 13 years ago
  40. 1fb0e3f Issue #12288: Consider '0' and '0.0' as valid initialvalue for tkinter SimpleDialog. by Andrew Svetlov · 13 years ago
  41. 4887b1c Issue #6056: Make multiprocessing use setblocking(True) on the sockets it uses. by Richard Oudkerk · 13 years ago
  42. 00528e8 #13922: argparse no longer incorrectly strips '--' after the first one. by R David Murray · 13 years ago
  43. ca9652e Issue #15406: Fix deprecation warning in ctypes test_bitfields.py by Meador Inge · 13 years ago
  44. 29e49d6 Issue #15394: Fix ref leaks in PyModule_Create. by Meador Inge · 13 years ago
  45. dad5711 Fixes Issue #14635: telnetlib will use poll() rather than select() when possible by Gregory P. Smith · 13 years ago
  46. 924ae1b Remove duplicate entry and fix order by Antoine Pitrou · 13 years ago
  47. f0b1baf Issue #15334: skip test_dynamic_key when run in non-interactive mode. by Antoine Pitrou · 13 years ago
  48. 282083d Issue #15300: Ensure the temporary test working directories are in the same parent folder when running tests in multiprocess mode from a Python build. by Antoine Pitrou · 13 years ago
  49. 24319ac Issue #10571: Fix the "--sign" option of distutils' upload command. by Antoine Pitrou · 13 years ago
  50. 79035bd Issue #15079: make a test applicable to both C and Python versions of the pickle module. by Antoine Pitrou · 13 years ago
  51. f90ea1f #14840: Add a bit on the difference between tuples and lists. Initial patch by Zachary Ware. by Ezio Melotti · 13 years ago
  52. e1ad3da Issue #14775: Fix a potential quadratic dict build-up due to the garbage collector repeatedly trying to untrack dicts. by Antoine Pitrou · 13 years ago
  53. 1f50389 #14472: Update .gitignore by Petri Lehtinen · 13 years ago
  54. 079bfc9 #14494: Document that absolute imports became default in 3.0 instead of 2.7. by Petri Lehtinen · 13 years ago
  55. 8d88604 #14798: pyclbr now raises ImportError instead of KeyError for missing packages by Petri Lehtinen · 13 years ago
  56. ba3b0d8 Issue #14245: Improve floating-point entry in FAQ. Thanks Zbyszek Jędrzejewski-Szmek for some of the wording. by Mark Dickinson · 13 years ago
  57. 7f0d888 Closes #14768: os.path.expanduser('~/a') doesn't works correctly when HOME is '/' by Jesus Cea · 13 years ago
  58. d576c71 Issue #14761: Fix potential leak on an error case in the import machinery. by Antoine Pitrou · 13 years ago
  59. 6cc7a41 #14034: added the argparse tutorial. Patch by Tshepang Lekhonkhobe. by Ezio Melotti · 13 years ago
  60. 2420d83 Issue #10941: Fix imaplib.Internaldate2tuple to produce correct result near by Alexander Belopolsky · 13 years ago
  61. 2cc52ef add Mark Shannon by Benjamin Peterson · 13 years ago
  62. 10ac77d Close #14032: fix incorrect variable reference in test_cmd_line_script by Nick Coghlan · 13 years ago
  63. 51804e9 #14399: zipfile now correctly handles comments added to empty zipfiles. by R David Murray · 13 years ago
  64. 5739e10 Issue #14557: Fix extensions build on HP-UX. Patch by Adi Roiban. by Charles-François Natali · 13 years ago
  65. b0a9c66 Issue #7978: socketserver now restarts the select() call when EINTR is returned. by Antoine Pitrou · 13 years ago
  66. 71faefc Issue #14359: Only use O_CLOEXEC in _posixmodule.c if it is defined. by Ross Lagerwall · 13 years ago
  67. 7441a7a #14291: if a header has non-ascii unicode, default to CTE using utf-8 by R David Murray · 13 years ago
  68. df723e1 #14179: add tests for re.compile. Patch by Florian Mladitsch. by Ezio Melotti · 13 years ago
  69. edbb6ca str.format_map tests don't do what they say: fix to actually implement the intent of the test. Closes #13450. by Eric V. Smith · 13 years ago
  70. 4a90ef0 Issue #14177: marshal.loads() now raises TypeError when given an unicode string. by Antoine Pitrou · 13 years ago
  71. d311374 Issue #13125: Silence spurious test_lib2to3 output when in non-verbose mode. by Antoine Pitrou · 13 years ago
  72. 4fe85ab sqlite3: Fix 64-bit integer handling in user functions on 32-bit architectures by Petri Lehtinen · 13 years ago
  73. 1ca9395 Issue #13491: Fix many errors in sqlite3 documentation by Petri Lehtinen · 13 years ago
  74. 51d04d1 Fix sqlite3.Connection.iterdump on tables/fields with reserved names or quotes by Petri Lehtinen · 14 years ago
  75. cd2a603 Branch merge by Éric Araujo · 14 years ago
  76. da4c467 #13506 Add '' to path for interactive interpreter by adding with_cwd parameter by Terry Jan Reedy · 14 years ago
  77. 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 14 years ago
  78. 6b671b2 Issue #13894: Skip test_threading.CRLockTests if _CRLock isn't available. Patch by Charles-François Natali · 14 years ago
  79. 03757ec Issue #13589: Fix some serialization primitives in the aifc module. by Antoine Pitrou · 14 years ago
  80. 73cec21 Stop ignoring RPMs in distutils' upload command (#2945). by Éric Araujo · 14 years ago
  81. 3f55e59 Issue #13725: regrtest does not recognize -d flag. by Meador Inge · 14 years ago
  82. 366999a Issue #9975: socket: Fix incorrect use of flowinfo and scope_id. Patch by by Charles-François Natali · 14 years ago
  83. 7ded21e Issue #5424: add tests for inet_ntoa, inet_ntop, inet_aton and inet_pton. by Antoine Pitrou · 14 years ago
  84. 2bc801c Issue #7502: Fix equality comparison for DocTestCase instances. by Antoine Pitrou · 14 years ago
  85. 07b1c87 Issue #13522: document error return values of some float and complex C API functions. by Antoine Pitrou · 14 years ago
  86. bb2e9c4 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 14 years ago
  87. e83f899 Issue #13530: Document os.lseek() result by Victor Stinner · 14 years ago
  88. 2f0ad74 Issue #8641: Update IDLE 3 syntax coloring to recognize b".." and not u"..". by Ned Deily · 14 years ago
  89. a74f8ef Fix inspect.getmodule to use a copy of sys.modules for iteration (#13487). by Éric Araujo · 14 years ago
  90. 22b9b37 Issue #12618: py_compile cannot create files in current directory by Meador Inge · 14 years ago
  91. 58fcf9f Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 14 years ago
  92. 8d40f16 Issue #13338: Handle all enumerations in _Py_ANNOTATE_MEMORY_ORDER by Petri Lehtinen · 14 years ago
  93. 490062b Remove duplicate ACKS. by Florent Xicluna · 14 years ago
  94. a7795db Issue #13191: typo in argparse docs by Eli Bendersky · 14 years ago
  95. c2c8960 Issue #13365: correct an error in the documentation of str.expandtabs by Eli Bendersky · 14 years ago
  96. a365113 Issue #13373: multiprocessing.Queue.get() could sometimes block indefinitely by Antoine Pitrou · 14 years ago
  97. 3c85fe0 Issue #3067: Fix the error raised by locale.setlocale() by Petri Lehtinen · 14 years ago
  98. 316f573 Issue #13304: Skip test case if user site-packages disabled (-s or by Ned Deily · 14 years ago
  99. 2336c85 Increase test coverage for distutils.filelist (#11751). by Éric Araujo · 14 years ago
  100. 47a4521 Fix distutils byte-compilation to comply with PEP 3147 (#11254). by Éric Araujo · 14 years ago