1. 50ab1a3 Issue #26685: Raise OSError if closing a socket fails by Martin Panter · 8 years ago
  2. 3872d62 Issue #25609: Double back-ticks to avoid “make check” buildbot failure by Martin Panter · 8 years ago
  3. 5f0507d Issue #26587: Allow .pth files to specify file paths as well as directories. by Brett Cannon · 8 years ago
  4. 9e080e0 Issue #25609: Introduce contextlib.AbstractContextManager and by Brett Cannon · 8 years ago
  5. dcfebb3 Issue #26676: Add missing XMLPullParser to ElementTree.__all__ by Martin Panter · 8 years ago
  6. 404cdc5 faulthandler: add Windows exception handler by Victor Stinner · 8 years ago
  7. fac3956 Optimize bytes.replace(b'', b'.') by Victor Stinner · 8 years ago
  8. 3c3d7f4 Issue #18787: spwd.getspnam() now raises a PermissionError if the user by Berker Peksag · 8 years ago
  9. ee803a8 Issue #26567: enhance ResourceWarning example by Victor Stinner · 8 years ago
  10. 914cde8 On ResourceWarning, log traceback where the object was allocated by Victor Stinner · 8 years ago
  11. 9b46a57 Doc: fix typos, patch written by Stefan Behnel by Victor Stinner · 8 years ago
  12. c2fc568 Enhance documentation on malloc debug hooks by Victor Stinner · 8 years ago
  13. 0611c26 On memory error, dump the memory block traceback by Victor Stinner · 9 years ago
  14. c4aec36 Check the GIL in PyObject_Malloc() by Victor Stinner · 9 years ago
  15. 34be807 Add PYTHONMALLOC env var by Victor Stinner · 9 years ago
  16. 2c2a4e6 Add Mock.assert_called() by Victor Stinner · 9 years ago
  17. d9108d1 Issue #23430: Stop socketserver from catching SystemExit etc from handlers by Martin Panter · 9 years ago
  18. bc1ee46 Issue #25179: Documentation for formatted string literals aka f-strings by Martin Panter · 9 years ago
  19. ffe96ae Issue #25994: Added the close() method and the support of the context manager by Serhiy Storchaka · 9 years ago
  20. 288ed03 Issue #26304: Additional “allows to” fix specific to 3.6 by Martin Panter · 9 years ago
  21. 7e3a91a Issue #26136: Upgrade the generator_stop warning to DeprecationWarning by Martin Panter · 9 years ago
  22. 1fe0d13 Issue #26243: zlib.compress() keyword argument support by Aviv Palivoda by Martin Panter · 9 years ago
  23. 503f908 Issue #26039: Added zipfile.ZipInfo.from_file() and zipinfo.ZipInfo.is_dir(). by Serhiy Storchaka · 9 years ago
  24. 9fa8126 Issue #18018: Raise an ImportError if a relative import is attempted by Brett Cannon · 9 years ago
  25. 849113a Issue #25791: Warn when __package__ != __spec__.parent. by Brett Cannon · 9 years ago
  26. f3914eb co_lnotab supports negative line number delta by Victor Stinner · 9 years ago
  27. 613065b Issue26069 - Update whatsnew/3.6.rst on traceback module's api removals. by Senthil Kumaran · 9 years ago
  28. e8afd01 Issue #23883: Update news by Martin Panter · 9 years ago
  29. 63b8505 Issue #25791: Raise an ImportWarning when __spec__ or __package__ are by Brett Cannon · 9 years ago
  30. 37dc2b2 Issue #25486: Resurrect inspect.getargspec in 3.6. Backout a565aad5d6e1. by Yury Selivanov · 9 years ago
  31. eae3079 Issue #25802: Deprecate load_module() on importlib.machinery.SourceFileLoader and SourcelessFileLoader. by Brett Cannon · 9 years ago
  32. 1e3c3e9 Issue #25768: Make compileall functions return booleans and document by Brett Cannon · 9 years ago
  33. b4ce1fc Issue #5319: New Py_FinalizeEx() API to exit with status 120 on failure by Martin Panter · 9 years ago
  34. 4f09806 #25485: Add context manager support to Telnet class. by R David Murray · 9 years ago
  35. 28a465c Issue #23883: Add news listing modules with new exported APIs by Martin Panter · 9 years ago
  36. fad4b60 Adjust grammar and punctuation in whatsnew/3.6.rst by Martin Panter · 9 years ago
  37. 6fe3926 Issue #25590: Complete attribute names even if they are not yet created by Martin Panter · 9 years ago
  38. c826ab0 Fix typos in whatsnew. by Zachary Ware · 9 years ago
  39. a1fc949 Issue #24379: Revert the operator.subscript patch (dccc4e63aef5) pending resolution of the related refcnt leak. by Raymond Hettinger · 9 years ago
  40. 6dc9ce1 Remove double 'error'. by Terry Jan Reedy · 9 years ago
  41. 9b63868 Issue #25154: Deprecate the pyvenv script. by Brett Cannon · 9 years ago
  42. c0d91af Upgrade the imp module's deprecation to DeprecationWarning. by Brett Cannon · 9 years ago
  43. 2bf8993 Optimize bytes.fromhex() and bytearray.fromhex() by Victor Stinner · 9 years ago
  44. ebcf9ed Document latest optimizations using _PyBytesWriter by Victor Stinner · 9 years ago
  45. 0d554d7 Issue #24164: Objects that need calling ``__new__`` with keyword arguments, by Serhiy Storchaka · 9 years ago
  46. b6c9572 Sort module names in whatsnew/3.6.rst by Berker Peksag · 9 years ago
  47. 960e848 Issue #16099: RobotFileParser now supports Crawl-delay and Request-rate by Berker Peksag · 9 years ago
  48. 68713e4 Closes issue #12006: Add ISO 8601 year, week, and day directives to strptime. by Alexander Belopolsky · 9 years ago
  49. 1d65d91 Issue #25301: The UTF-8 decoder is now up to 15 times as fast for error by Victor Stinner · 9 years ago
  50. 01ada39 Issue #25267: The UTF-8 encoder is now up to 75 times as fast for error by Victor Stinner · 9 years ago
  51. c3713e9 Optimize ascii/latin1+surrogateescape encoders by Victor Stinner · 9 years ago
  52. ab82422 Issue #25011: rlcomplete now omits private and special attribute names unless by Serhiy Storchaka · 9 years ago
  53. f96418d Issue #24870: Optimize the ASCII decoder for error handlers: surrogateescape, by Victor Stinner · 9 years ago
  54. 47d159f Issue #24379: Add operator.subscript() as a convenience for building slices. by Raymond Hettinger · 9 years ago
  55. dfa95c9 Issue #20059: urllib.parse raises ValueError on all invalid ports. by Robert Collins · 9 years ago
  56. 62f27b5 whatsnew/3.5,3.6: Mention that 'async' is a bad name for modules by Yury Selivanov · 9 years ago
  57. 5661316 Sync NEWS (re removed inspect.getargspec and inspect.getmoduleinfo) by Yury Selivanov · 9 years ago
  58. 6dfbc5d Issue #13248: Remove inspect.getmoduleinfo() from 3.6 (deprecated in 3.3) by Yury Selivanov · 9 years ago
  59. f1b5ccb Issue #13248: Remove inspect.getargspec from 3.6 (deprecated from 3.0) by Yury Selivanov · 9 years ago
  60. 7a21911 docs/whatsnew/3.6: Mention that 'async' and 'await' will be keywords in 3.7 by Yury Selivanov · 9 years ago
  61. d1da507 Add whatsnew for 3.6 by Yury Selivanov · 9 years ago