1. f19a400 Issue #21088: Merge from 3.4. by Larry Hastings · 11 years ago
  2. 9147a96 Issue #21088: Bugfix for curses.window.addch() regression in 3.4.0. by Larry Hastings · 11 years ago
  3. 53d2c41 Issue #19414: Have the OrderedDict mark deleted links as unusable. by Raymond Hettinger · 11 years ago
  4. 3170d1c Issue #21421: Add __slots__ to the MappingViews ABCs. by Raymond Hettinger · 11 years ago
  5. 4b0b1ac Issue #21101: Eliminate double hashing in the C code for collections.Counter(). by Raymond Hettinger · 11 years ago
  6. db067af Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), by Victor Stinner · 11 years ago
  7. cb2ad80 Closes #18604: Merge with 3.4 by Zachary Ware · 11 years ago
  8. ceced6b Issue #18604: Consolidated checks for GUI availability. by Zachary Ware · 11 years ago
  9. 5de1f82 Issue #21407: _decimal now supports function signatures. by Stefan Krah · 11 years ago
  10. b9e71d4 Merge with 3.4 by Martin v. Löwis · 11 years ago
  11. 161d695 Issue #21377: PyBytes_Concat() now tries to concatenate in-place when the first argument has a reference count of 1. by Antoine Pitrou · 11 years ago
  12. 3d5c9e2 Update to 1.0.1g by Martin v. Löwis · 11 years ago
  13. 991fd28 Unite 'Build' sections of Misc/NEWS by Zachary Ware · 11 years ago
  14. 45bc17b Issue #19962: The Windows build process now creates "python.bat" by Zachary Ware · 11 years ago
  15. b151f8f Issue #10650: Remove the non-standard 'watchexp' parameter from the by Stefan Krah · 11 years ago
  16. 5c2ac8c setup.py: report modules which built but import failed (closes #21282) by Benjamin Peterson · 11 years ago
  17. e83ce4b Closes #17386: Merge with 3.4 by Zachary Ware · 11 years ago
  18. a67b97f Issue #17386: Expand Doc/make.bat to be much more similar to Doc/Makefile by Zachary Ware · 11 years ago
  19. 32497f8 Issue #21321: itertools.islice() now releases the reference to the source iterator when the slice is exhausted. by Antoine Pitrou · 11 years ago
  20. 26f82ef Issue #21321: itertools.islice() now releases the reference to the source iterator when the slice is exhausted. by Antoine Pitrou · 11 years ago
  21. b850389 Issue #21057: TextIOWrapper now allows the underlying binary stream's read() or read1() method to return an arbitrary bytes-like object (such as a memoryview). by Antoine Pitrou · 11 years ago
  22. b4bebda Issue #20951: SSLSocket.send() now raises either SSLWantReadError or SSLWantWriteError on a non-blocking socket if the operation would block. Previously, it would return 0. by Antoine Pitrou · 11 years ago
  23. c763807 Merge with 3.4 by Terry Jan Reedy · 11 years ago
  24. 43e7cd3 Issue #21026: Augment site doc based on experiments. Patch by Carol Willing. by Terry Jan Reedy · 11 years ago
  25. 7971286 merge heads by Giampaolo Rodola' · 11 years ago
  26. 8af740c fix isuse #13248: remove previously deprecated asyncore.dispatcher __getattr__ cheap inheritance hack. by Giampaolo Rodola' · 11 years ago
  27. 05da1ef Issue #18727: improve test coverage of the csv module by testing for DictWriter.writerows. by Antoine Pitrou · 11 years ago
  28. b1e5844 Issue #9815: assertRaises now tries to clear references to local variables in the exception's traceback. by Antoine Pitrou · 11 years ago
  29. 9681022 Issue #9815: assertRaises now tries to clear references to local variables in the exception's traceback. by Antoine Pitrou · 11 years ago
  30. 6999441 Issue #20355: -W command line options now have higher priority than the PYTHONWARNINGS environment variable. Patch by Arfrever. by Antoine Pitrou · 11 years ago
  31. 285a163 Issue #21312: Update the thread_foobar.h template file to include newer threading APIs. Patch by Jack McCracken. by Antoine Pitrou · 11 years ago
  32. c695c95 Issue #19940: ssl.cert_time_to_seconds() now interprets the given time string in the UTC timezone (as specified in RFC 5280), not the local timezone. by Antoine Pitrou · 11 years ago
  33. 3a74ce2 Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError. by Antoine Pitrou · 11 years ago
  34. 871dfc4 Issue #13204: Calling sys.flags.__new__ would crash the interpreter, now it raises a TypeError. by Antoine Pitrou · 11 years ago
  35. 5707ff1 Backed out changeset: 4b97092aa4bd by Tim Golden · 11 years ago
  36. fbf963c Backed out changeset: 17df50df62c7 by Tim Golden · 11 years ago
  37. 15efd2b Issue #18314 Add NEWS item. by Tim Golden · 11 years ago
  38. 4675d79 Issue #18314 os.unlink will now remove junction points on Windows. Patch by Kim Gräsman. by Tim Golden · 11 years ago
  39. 4453cf5 merge 3.4 (#19385) by Benjamin Peterson · 11 years ago
  40. e3083d3 make operations on closed dumb databases raise a consistent exception (closes #19385) by Benjamin Peterson · 11 years ago
  41. 4432cf4 Issue #21207: Detect when the os.urandom cached fd has been closed or replaced, and open it anew. by Antoine Pitrou · 11 years ago
  42. e472aea Issue #21207: Detect when the os.urandom cached fd has been closed or replaced, and open it anew. by Antoine Pitrou · 11 years ago
  43. 7b9ff0e Issue8297: module attribute lookup failures now include module name in error message. by Ethan Furman · 11 years ago
  44. ede86f5 Merge from 3.4 by Zachary Ware · 11 years ago
  45. 8894ef1 Prevent Sphinx error on whatsnew/changelog by Zachary Ware · 11 years ago
  46. b218863 subprocess's Popen.wait() is now thread safe so that multiple threads by Gregory P. Smith · 11 years ago
  47. d65ba51 subprocess's Popen.wait() is now thread safe so that multiple threads by Gregory P. Smith · 11 years ago
  48. 711ee25 Issue #21127: Path objects can now be instantiated from str subclass instances (such as numpy.str_). by Antoine Pitrou · 11 years ago
  49. cb5ec77 Issue #21127: Path objects can now be instantiated from str subclass instances (such as numpy.str_). by Antoine Pitrou · 11 years ago
  50. 29c4777 Merge with 3.4 by Terry Jan Reedy · 11 years ago
  51. 9573638 Issue #21138: Change default reformat paragraph width to PEP 8's 72. by Terry Jan Reedy · 11 years ago
  52. f16fa11 Merge with 3.4 by Terry Jan Reedy · 11 years ago
  53. d5d4c4e Issue 21284: Idle: make test_formatparagraph pass even when a user changes the by Terry Jan Reedy · 11 years ago
  54. f4faef4 merge 3.4 by Senthil Kumaran · 11 years ago
  55. 4a63923 NEWS entry for #15002 by Senthil Kumaran · 11 years ago
  56. 4eef074 Merge: #12220: improve minidom error when URI contains spaces. by R David Murray · 11 years ago
  57. 9077d24 #12220: improve minidom error when URI contains spaces. by R David Murray · 11 years ago
  58. 5e526bb Issue #11571: merge with 3.4 by Ned Deily · 11 years ago
  59. 09ae544 Issue #11571: Ensure that the turtle window becomes the topmost window by Ned Deily · 11 years ago
  60. 6d17235 Issue #21311: merge with 3.4 by Ned Deily · 11 years ago
  61. f31b478 Issue #21311: Avoid exception in _osx_support with non-standard compiler by Ned Deily · 11 years ago
  62. 31e9f7c Merge from 3.4. by Eric Snow · 11 years ago
  63. 658af31 Issue #21200: Return None from pkgutil.get_loader() when __spec__ is missing. by Eric Snow · 11 years ago
  64. dee46b3 Merge with 3.4 by Zachary Ware · 11 years ago
  65. a37ff0f Issue #21289: Fix documentation building on Windows using Doc/make.bat. by Zachary Ware · 11 years ago
  66. 172f025 Issue #21068: The ssl.PROTOCOL* constants are now enum members. by Antoine Pitrou · 11 years ago
  67. a090823 Merge news item from 3.4 by Guido van Rossum · 11 years ago
  68. 14d7fab NEWS for latest asyncio commit. by Guido van Rossum · 11 years ago
  69. 1a4f561 - Issue #21285: Refactor and fix curses configure check to always search by doko@ubuntu.com · 11 years ago
  70. 4a173bc Fixes for KFreeBSD and the Hurd: by doko@ubuntu.com · 11 years ago
  71. a3818a3 - Issue #15234: For BerkelyDB and Sqlite, only add the found library and by doko@ubuntu.com · 11 years ago
  72. 6ac4240 Issue #18566: Clarify unittest setUp, tearDown doc. Patch by Nitika Agarwal. by Terry Jan Reedy · 11 years ago
  73. ebc1a30 Closes issue 21239. unittest.mock.patch.stopall() did not work deterministically when the same name was patched multiple times. by Michael Foord · 11 years ago
  74. 484f8a8 Closes Issue 21222. by Kushal Das · 11 years ago
  75. f8d60ca - Merge 3.4 by doko@ubuntu.com · 11 years ago
  76. dc28213 - Merge 3.4 by doko@ubuntu.com · 11 years ago
  77. 72f61de - fix merge conflict by doko@ubuntu.com · 11 years ago
  78. 2273ab2 Merge 3.4 by doko@ubuntu.com · 11 years ago
  79. 8bdeb16 support setting fpu precision on m68k (closes #20904) by Benjamin Peterson · 11 years ago
  80. 8af9db3 Closes Issue 21262: New method assert_not_called for Mock. by Kushal Das · 11 years ago
  81. 8c14534 Closes Issue 21238: New keyword argument `unsafe` to Mock. by Kushal Das · 11 years ago
  82. 94a5b66 Issue #20896: ssl.get_server_certificate() now uses PROTOCOL_SSLv23, not PROTOCOL_SSLv3, for maximum compatibility. by Antoine Pitrou · 11 years ago
  83. 62e582c Merge with 3.4 by Terry Jan Reedy · 11 years ago
  84. a12572f Close issue #8931: Make alternate formatting for 'c' raise an exception. Patch by Torsten Landschoff. by Eric V. Smith · 11 years ago
  85. 15f2d17 Merge by Michael Foord · 11 years ago
  86. 5d1f6c3 Merge by Kushal Das · 11 years ago
  87. a3b99a0 Merge 3.4 branch. by doko@ubuntu.com · 11 years ago
  88. 9574355 - Issue #21223: Pass test_site/test_startup_imports when some of the extensions by doko@ubuntu.com · 11 years ago
  89. 02d23a2 Closes Issue 17861: Autogenerate Include/opcode.h from opcode.py. by Kushal Das · 11 years ago
  90. ddbd2ee Closes #21203: Updated fileConfig and dictConfig to remove inconsistencies. Thanks to Jure Koren for the patch. by Vinay Sajip · 11 years ago
  91. 4382ad6 Closes #21197: Add lib64 -> lib symlink in venvs on 64-bit non-OS X POSIX. by Vinay Sajip · 11 years ago
  92. 809f90f Reverted 16efa8d27e4c after discussion with Eric. by Vinay Sajip · 11 years ago
  93. 1e53f8d Issue #21197: Add lib64 -> lib symlink in venvs on 64-bit non-OS X POSIX. by Vinay Sajip · 11 years ago
  94. a0d1073 Closed issue #8931: Make alternate formatting for 'c' raise an exception. Patch by Torsten Landschoff. by Eric V. Smith · 11 years ago
  95. e95a4b2 misc.news: Remove trailing whitespace by Yury Selivanov · 11 years ago
  96. 626c7b7 syncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1 by Yury Selivanov · 11 years ago
  97. 9417764 misc.news: Remove whitespace by Yury Selivanov · 11 years ago
  98. f15f748 asyncio.tasks: Fix CoroWrapper to workaround yield-from bug in CPython < 3.4.1 by Yury Selivanov · 11 years ago
  99. 1976d9b #15916: if there are no docstrings, make empty suite, not an error. by R David Murray · 11 years ago
  100. 4d8eee9 Merge #17498: Defer SMTPServerDisconnected errors until the next command. by R David Murray · 11 years ago