1. d76d8bf Issue #28199: Microoptimized dict resizing. Based on patch by Naoki Inada. by Serhiy Storchaka · 8 years ago
  2. f94d1ee Issue #28544: Fix inefficient call to _PyObject_CallMethodId() by Victor Stinner · 8 years ago
  3. 684ef2c Issue #28544: Pass `PyObject*` to _PyDict_Pop, not `PyDictObject*` by Yury Selivanov · 8 years ago
  4. 833c626 Issue #28544: Fix compilation of _asynciomodule.c on Windows by Yury Selivanov · 8 years ago
  5. d14ae16 Removes incorrect condition from lib_pdb.msi by Steve Dower · 8 years ago
  6. 43ab355 Removes incorrect condition from lib_pdb.msi by Steve Dower · 8 years ago
  7. 1aea8fb Issue #28544: Fix _asynciomodule.c on Windows by Victor Stinner · 8 years ago
  8. a0c1ba6 Issue #28544: Implement asyncio.Task in C. by Yury Selivanov · 8 years ago
  9. bbcb799 Merge heads. by Xavier de Gaye · 8 years ago
  10. 1c17e7f Issue #28046: Fix the removal of the sysconfigdata module by Xavier de Gaye · 8 years ago
  11. 8a8ebc9 Fixed possible NULL decrefing. by Serhiy Storchaka · 8 years ago
  12. 3ec5f42 Fixed possible NULL decrefing. by Serhiy Storchaka · 8 years ago
  13. b6bd81d Issue #28353: Make test_os.WalkTests.test_walk_bad_dir stable. by Serhiy Storchaka · 8 years ago
  14. 7865dff Issue #28353: Make test_os.WalkTests.test_walk_bad_dir stable. by Serhiy Storchaka · 8 years ago
  15. c6dd415 Issue #28522: Fixes mishandled buffer reallocation in getpathp.c by Steve Dower · 8 years ago
  16. e45ef4e Issue #22949: Documented that fnmatch.translate() is for use with re.match(). by Serhiy Storchaka · 8 years ago
  17. a65a474 Issue #22949: Documented that fnmatch.translate() is for use with re.match(). by Serhiy Storchaka · 8 years ago
  18. e0a220e Issue #22493: Updated an example for fnmatch.translate(). by Serhiy Storchaka · 8 years ago
  19. 31c80e8 Revert incorrect file merge from 3.5. by Steve Dower · 8 years ago
  20. 43d2b26 Merge from 3.5 by Steve Dower · 8 years ago
  21. fcf622e Updates release build to collect symbols and binaries, and create nuget package. by Steve Dower · 8 years ago
  22. 159f97b Issue #28496: Mark up constants 0, 1 and -1 that denote return values or by Serhiy Storchaka · 8 years ago
  23. 1ecf7d2 Issue #28496: Mark up constants 0, 1 and -1 that denote return values or by Serhiy Storchaka · 8 years ago
  24. 0093907 Issue #28426: Deprecated undocumented functions PyUnicode_AsEncodedObject(), by Serhiy Storchaka · 8 years ago
  25. 802426f Issue #28526: Use PyUnicode_AsEncodedString() instead of by Serhiy Storchaka · 8 years ago
  26. b29cee4 Issue #28526: Use PyUnicode_AsEncodedString() instead of by Serhiy Storchaka · 8 years ago
  27. b1152be Issue #28509: dict.update() no longer allocate unnecessary large memory by INADA Naoki · 8 years ago
  28. ec9357b Ignore harmless suspicious markup by Zachary Ware · 8 years ago
  29. d9aa4d3 Merge from 3.5 by Zachary Ware · 8 years ago
  30. bb44477 Fix default role usage by Zachary Ware · 8 years ago
  31. 66078ac Issue #25002: Back out asyncore/asynchat deprecation. by Guido van Rossum · 8 years ago
  32. 3dca624 Issue #26240: Merge subprocess doc string from 3.5 into 3.6 by Martin Panter · 8 years ago
  33. 4afdca0 Issue #26240: Clean up the subprocess module doc string by Martin Panter · 8 years ago
  34. 6c2b9d3 Issue #28333: Fixes off-by-one error that was adding an extra space. by Steve Dower · 8 years ago
  35. 26231bb Null merge by Serhiy Storchaka · 8 years ago
  36. 36888dd Issue #28353: Fixed tests of os.fwalk() with broken links. by Serhiy Storchaka · 8 years ago
  37. 5ec2431 Issue #28107: Update typing module documentation for NamedTuple (Ivan) by Guido van Rossum · 8 years ago
  38. 28f9820 Issue #28353: Try to fix tests. by Serhiy Storchaka · 8 years ago
  39. 16591f4 Issue 25002: Deprecate asyncore/asynchat. Patch by Mariatta. by Guido van Rossum · 8 years ago
  40. 1faf902 Issue #27275: Fixed implementation of pop() and popitem() methods in by Serhiy Storchaka · 8 years ago
  41. 4832580 Issue #27275: Fixed implementation of pop() and popitem() methods in by Serhiy Storchaka · 8 years ago
  42. ecb9018 Issue #28255: calendar.TextCalendar().prmonth() no longer prints a space by Serhiy Storchaka · 8 years ago
  43. 7ff51bd Issue #28255: calendar.TextCalendar().prmonth() no longer prints a space by Serhiy Storchaka · 8 years ago
  44. a6eba11 Issue #20491: The textwrap.TextWrapper class now honors non-breaking spaces. by Serhiy Storchaka · 8 years ago
  45. f3ebc9f Issue #20491: The textwrap.TextWrapper class now honors non-breaking spaces. by Serhiy Storchaka · 8 years ago
  46. af4e474 Issue #28353: os.fwalk() no longer fails on broken links. by Serhiy Storchaka · 8 years ago
  47. 42babab Issue #28353: os.fwalk() no longer fails on broken links. by Serhiy Storchaka · 8 years ago
  48. 179111b Merge heads by Serhiy Storchaka · 8 years ago
  49. c8bc3d1 Issue #28408: Fixed a leak and remove redundant code in _PyUnicodeWriter_Finish(). by Serhiy Storchaka · 8 years ago
  50. 74c1753 Issue #28430: Fix iterator of C implemented asyncio.Future doesn't by INADA Naoki · 8 years ago
  51. c3adf1e Issue #28314: Added tests for xml.etree.ElementTree.Element.getiterator(). by Serhiy Storchaka · 8 years ago
  52. 036fb15 Issue #28314: Added tests for xml.etree.ElementTree.Element.getiterator(). by Serhiy Storchaka · 8 years ago
  53. c4a3e90 Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug build. by Serhiy Storchaka · 8 years ago
  54. 839023f Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug build. by Serhiy Storchaka · 8 years ago
  55. 77eede3 Issue #28426: Fixed potential crash in PyUnicode_AsDecodedObject() in debug build. by Serhiy Storchaka · 8 years ago
  56. b1f5287 Issue #27025: Generated names for Tkinter widgets now start by the "!" prefix by Serhiy Storchaka · 8 years ago
  57. 7db3c48 Issue #28517: Fixed of-by-one error in the peephole optimizer that caused by Serhiy Storchaka · 8 years ago
  58. 802883a merge 3.5 (#28525) by Benjamin Peterson · 8 years ago
  59. bc51a8a fix name of keyword parameter to gc.collect() (closes #28525) by Benjamin Peterson · 8 years ago
  60. 407c8ac Issue #25464: Fixed HList.header_exists() in tkinter.tix module by addin by Serhiy Storchaka · 8 years ago
  61. 071dec2 Issue #25464: Fixed HList.header_exists() in tkinter.tix module by addin by Serhiy Storchaka · 8 years ago
  62. 712d593 Issue #5830: Remove old comment. Add empty slots. by Raymond Hettinger · 8 years ago
  63. e896391 Merge heads by Serhiy Storchaka · 8 years ago
  64. 01c521b asyncio: Increase asyncio.Future test coverage; test both implementations. by Yury Selivanov · 8 years ago
  65. cb637fa Some distutils tests require zlib for creating tar.gz source distribution. by Serhiy Storchaka · 8 years ago
  66. 0211bb7 Some distutils tests require zlib for creating tar.gz source distribution. by Serhiy Storchaka · 8 years ago
  67. 8985031 Issue #28115: ZIP creation test requires zlib. by Serhiy Storchaka · 8 years ago
  68. b4293ef Issue #28115: ZIP creation test requires zlib. by Serhiy Storchaka · 8 years ago
  69. 7fc92bb Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive. by Serhiy Storchaka · 8 years ago
  70. 666de77 Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive. by Serhiy Storchaka · 8 years ago
  71. 89ecb4a Issue #28115: Added tests for CLI of the zipfile module. by Serhiy Storchaka · 8 years ago
  72. 61c4c44 Issue #28115: Added tests for CLI of the zipfile module. by Serhiy Storchaka · 8 years ago
  73. 662cef6 Issue #25953: re.sub() now raises an error for invalid numerical group by Serhiy Storchaka · 8 years ago
  74. 265dce6 Issue #27989: Tweak inspect.formatannotation() to improve pydoc rendering of function annotations. Ivan L. (3.5->3.6) by Guido van Rossum · 8 years ago
  75. 52e5004 Issue #27989: Tweak inspect.formatannotation() to improve pydoc rendering of function annotations. Ivan L. by Guido van Rossum · 8 years ago
  76. 85e81cf Issue #28435: Merge urllib test fixes from 3.5 into 3.6 by Martin Panter · 8 years ago
  77. 1002a62 Issue #28435: Avoid no_proxy environment variable interfering with tests by Martin Panter · 8 years ago
  78. d60ea5f Issue #26620: Fix ResourceWarning in test_urllib2_localnet by Martin Panter · 8 years ago
  79. 7e0062f Two minor typing.py fixes (upstream #305) (3.5->3.6) by Guido van Rossum · 8 years ago
  80. 3b55799 Two minor typing.py fixes (upstream #305) by Guido van Rossum · 8 years ago
  81. e238ab5 Issue #28482: Skip a few test_typing tests if asyncio unavailable (3.5->3.6) by Guido van Rossum · 8 years ago
  82. ac353df Issue #28482: Skip a few test_typing tests if asyncio unavailable by Guido van Rossum · 8 years ago
  83. 6330f2a Merge 3.5 (issue #26796) by Yury Selivanov · 8 years ago
  84. e8a6045 Issue #26796: Don't configure the number of workers for default threadpool executor. by Yury Selivanov · 8 years ago
  85. 2ae0d64 Fix indent (merge) by Guido van Rossum · 8 years ago
  86. 9f91e85 Fix indent by Guido van Rossum · 8 years ago
  87. 6c950ce Sync typing.py from upstream (3.5->3.6) by Guido van Rossum · 8 years ago
  88. 7ef22d6 Sync typing.py from upstream by Guido van Rossum · 8 years ago
  89. e145efc Merge 3.5 (issue #26923) by Yury Selivanov · 8 years ago
  90. 3d67615 Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children are done. by Yury Selivanov · 8 years ago
  91. ed05406 Issue #28500: Fix asyncio to handle async gens GC from another thread. by Yury Selivanov · 8 years ago
  92. 68adfa3 Merge (issue #25152) by Brett Cannon · 8 years ago
  93. f8c1505 Issue #25152: Mention the deprecation of pyvenv by Brett Cannon · 8 years ago
  94. eb7ebd3 Merge (issue #28396) by Brett Cannon · 8 years ago
  95. 10a7dbd Issue #28396: Remove any mention of .pyo files from the man page. by Brett Cannon · 8 years ago
  96. d5d32d2 Issue #28214: Improved exception reporting for problematic __set_name__ by Serhiy Storchaka · 8 years ago
  97. 467ab19 Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raising by Serhiy Storchaka · 8 years ago
  98. b0426cd Issue #28410: Keep the traceback of original exception in _PyErr_ChainExceptions(). by Serhiy Storchaka · 8 years ago
  99. 9e373be Issue #28410: Keep the traceback of original exception in _PyErr_ChainExceptions(). by Serhiy Storchaka · 8 years ago
  100. 0a421a2 Issue #18219: Optimize csv.DictWriter for large number of columns. by INADA Naoki · 8 years ago