1. c0215df Issue #28639: Fix inspect.isawaitable to always return bool by Yury Selivanov · 8 years ago
  2. 6cc495e asyncio: Fix _format_coroutine for coroutine-like objects w/o __name__ by Yury Selivanov · 8 years ago
  3. eb20fca Issue #28563: Fixed possible DoS and arbitrary code execution when handle by Serhiy Storchaka · 8 years ago
  4. 1c3fdd9 Issue #28563: Fixed possible DoS and arbitrary code execution when handle by Serhiy Storchaka · 8 years ago
  5. 07bcf05 Issue #28563: Fixed possible DoS and arbitrary code execution when handle by Serhiy Storchaka · 8 years ago
  6. 6ea2b8f Issue #28613: Expose asyncio._get_running_loop() and _set_running_loop() by Yury Selivanov · 8 years ago
  7. 49d6b8c Issue #28634: Fix asyncio.isfuture() to support mocks by Yury Selivanov · 8 years ago
  8. 24411f8 Issue #23996: Added _PyGen_SetStopIterationValue for safe raising by Serhiy Storchaka · 8 years ago
  9. 88281ce Issue #28485: Check for negative workers even without ProcessPoolExecutor by Martin Panter · 8 years ago
  10. 600a349 Issue #28613: Fix get_event_loop() to return the current loop by Yury Selivanov · 8 years ago
  11. c542049 asyncio: Sync with upstream by Yury Selivanov · 8 years ago
  12. 491a912 Issue #28600: Optimize loop.call_soon(). by Yury Selivanov · 8 years ago
  13. 2af4144 Merge new pip/setuptools from 3.4 by Donald Stufft · 8 years ago
  14. 20a587b Upgrade pip to 9.0 and setuptools to 28.7.1 by Donald Stufft · 8 years ago
  15. 04f17f1 Issue #27517: LZMA compressor and decompressor no longer raise exceptions if by Serhiy Storchaka · 8 years ago
  16. a89d22a Issue #28449: tarfile.open() with mode "r" or "r:" now tries to open a tar by Serhiy Storchaka · 8 years ago
  17. d1af5ef Issue #28385: An error message when non-empty format spec is passed to by Serhiy Storchaka · 8 years ago
  18. c9b750d Issue #23262: The webbrowser module now supports Firefox 36+ and derived by Serhiy Storchaka · 8 years ago
  19. 32c0d3a Issue #27939: Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused by Serhiy Storchaka · 8 years ago
  20. 0438683 Backed out changeset 9f7505019767 (issue #27275). by Serhiy Storchaka · 8 years ago
  21. 62fe1bb Issue #28556: updates to typing.py (add Coroutine, prohibit Generic[T]()) by Guido van Rossum · 8 years ago
  22. b7dedc8 Issue #28556: updates to typing.py (fix copy, deepcopy, pickle) by Guido van Rossum · 8 years ago
  23. 5fc25a8 Issue #28556: updates to typing.py by Guido van Rossum · 8 years ago
  24. 7865dff Issue #28353: Make test_os.WalkTests.test_walk_bad_dir stable. by Serhiy Storchaka · 8 years ago
  25. 4afdca0 Issue #26240: Clean up the subprocess module doc string by Martin Panter · 8 years ago
  26. 36888dd Issue #28353: Fixed tests of os.fwalk() with broken links. by Serhiy Storchaka · 8 years ago
  27. 4832580 Issue #27275: Fixed implementation of pop() and popitem() methods in by Serhiy Storchaka · 8 years ago
  28. 7ff51bd Issue #28255: calendar.TextCalendar().prmonth() no longer prints a space by Serhiy Storchaka · 8 years ago
  29. f3ebc9f Issue #20491: The textwrap.TextWrapper class now honors non-breaking spaces. by Serhiy Storchaka · 8 years ago
  30. 42babab Issue #28353: os.fwalk() no longer fails on broken links. by Serhiy Storchaka · 8 years ago
  31. 036fb15 Issue #28314: Added tests for xml.etree.ElementTree.Element.getiterator(). by Serhiy Storchaka · 8 years ago
  32. 071dec2 Issue #25464: Fixed HList.header_exists() in tkinter.tix module by addin by Serhiy Storchaka · 8 years ago
  33. 0211bb7 Some distutils tests require zlib for creating tar.gz source distribution. by Serhiy Storchaka · 8 years ago
  34. b4293ef Issue #28115: ZIP creation test requires zlib. by Serhiy Storchaka · 8 years ago
  35. 666de77 Issue #28488: shutil.make_archive() no longer adds entry "./" to ZIP archive. by Serhiy Storchaka · 8 years ago
  36. 61c4c44 Issue #28115: Added tests for CLI of the zipfile module. by Serhiy Storchaka · 8 years ago
  37. 52e5004 Issue #27989: Tweak inspect.formatannotation() to improve pydoc rendering of function annotations. Ivan L. by Guido van Rossum · 8 years ago
  38. 1002a62 Issue #28435: Avoid no_proxy environment variable interfering with tests by Martin Panter · 8 years ago
  39. d60ea5f Issue #26620: Fix ResourceWarning in test_urllib2_localnet by Martin Panter · 8 years ago
  40. 3b55799 Two minor typing.py fixes (upstream #305) by Guido van Rossum · 8 years ago
  41. ac353df Issue #28482: Skip a few test_typing tests if asyncio unavailable by Guido van Rossum · 8 years ago
  42. e8a6045 Issue #26796: Don't configure the number of workers for default threadpool executor. by Yury Selivanov · 8 years ago
  43. 9f91e85 Fix indent by Guido van Rossum · 8 years ago
  44. 7ef22d6 Sync typing.py from upstream by Guido van Rossum · 8 years ago
  45. 3d67615 Issue #26923: Fix asyncio.Gather to refuse being cancelled once all children are done. by Yury Selivanov · 8 years ago
  46. 1f6b69b Issue #28409: regrtest: fix the parser of command line arguments. by Victor Stinner · 8 years ago
  47. b1a751b Issue #24452: Make webbrowser support Chrome on Mac OS X. by Guido van Rossum · 8 years ago
  48. 10e54ae Issue #20766: Fix references leaked by pdb in the handling of SIGINT handlers. by Xavier de Gaye · 8 years ago
  49. d2a584b Issue #28394: Spelling and typo fixes in code comments and changelog by Martin Panter · 8 years ago
  50. 5e2a0ef Issue #28339: Remove ByteString.register(memoryview(...)) from typing.py. by Guido van Rossum · 8 years ago
  51. 4145c83 Issue #27972: Prohibit Tasks to await on themselves. by Yury Selivanov · 8 years ago
  52. 908d55d Issue #28399: Remove UNIX socket from FS before binding. by Yury Selivanov · 8 years ago
  53. e259267 Merge further typing.py changes from upstream. by Guido van Rossum · 8 years ago
  54. 9c0e1f8 Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters(). by Serhiy Storchaka · 8 years ago
  55. 48b1c3f Issue #28376: The type of long range iterator is now registered as Iterator. by Serhiy Storchaka · 8 years ago
  56. 44759bc Issue #28376: The constructor of range_iterator now checks that step is not 0. by Serhiy Storchaka · 8 years ago
  57. 3bd9fde Issue #28376: Fixed typos. Based on patch by Oren Milman. by Serhiy Storchaka · 8 years ago
  58. 1c1130f Issue #25783: Fixed test_traceback when run directly (without regrtest). by Serhiy Storchaka · 8 years ago
  59. 5665301 Issue #28257: Improved error message when pass a non-mapping as a var-keyword by Serhiy Storchaka · 8 years ago
  60. 8793b21 Issue #26293: Fixed writing ZIP files that starts not from the start of the by Serhiy Storchaka · 8 years ago
  61. 36e7e97 asyncio: Only allow Unix Stream sockets for loop.create_unix_server/connection by Yury Selivanov · 8 years ago
  62. cb9424f Issue #27759: Fix selectors incorrectly retain invalid file descriptors. by Yury Selivanov · 8 years ago
  63. 4c8b2cd skip test on windows by Benjamin Peterson · 8 years ago
  64. cf0b9da fix bug in 48797808a302 by Benjamin Peterson · 8 years ago
  65. e06cc67 skip test if resizing is not supported by Benjamin Peterson · 8 years ago
  66. cd04db0 mmap: do all internal arithmetic with Py_ssize_t while being very careful about overflow by Benjamin Peterson · 8 years ago
  67. 92e7c7f asyncio: Add "call_connection_made" arg to SSLProtocol.__init__ by Yury Selivanov · 8 years ago
  68. 8dc3e43 Issue #28372: Fix asyncio to support formatting of non-python coroutines by Yury Selivanov · 8 years ago
  69. 0de3de6 Issue #28371: Deprecate passing asyncio.Handles to run_in_executor. by Yury Selivanov · 8 years ago
  70. 3e56ff0 Issue #28370: Speedup asyncio.StreamReader.readexactly by Yury Selivanov · 8 years ago
  71. 5b8d4f9 Issue #28369: Raise an error when transport's FD is used with add_reader by Yury Selivanov · 8 years ago
  72. 9eb6c67 Issue #28368: Refuse monitoring processes if the child watcher has no loop attached. by Yury Selivanov · 8 years ago
  73. b5bb404 Issue #28222: Don't fail if pygments is not available by Berker Peksag · 8 years ago
  74. 7338ebc Issue #28321: Fixed writing non-BMP characters with binary format in plistlib. by Serhiy Storchaka · 8 years ago
  75. 7fd9f4b Merge heads by Serhiy Storchaka · 8 years ago
  76. 09f3d08 Issue #28350: String constants with null character no longer interned. by Serhiy Storchaka · 8 years ago
  77. 8f657c3 ensure gc tracking is off when invoking weakref callbacks (closes #26617) by Benjamin Peterson · 8 years ago
  78. b47c9d2 More updates from upstream typing.py by Guido van Rossum · 8 years ago
  79. cc16423 Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4(). by Serhiy Storchaka · 8 years ago
  80. 63b5b6f Moved Unicode C API related tests to separate test class. by Serhiy Storchaka · 8 years ago
  81. 480b069 Issue #20254: Fix duplicate tests in test_socket by Berker Peksag · 8 years ago
  82. d556a35 Issue #27358: Backported tests. by Serhiy Storchaka · 8 years ago
  83. 6498e52 Issue #28257: Backported a test. by Serhiy Storchaka · 8 years ago
  84. 85c3f26 Issue #28322: Fixed possible crashes when unpickle itertools objects from by Serhiy Storchaka · 8 years ago
  85. 38317d3 Issue #28275: Clean up to avoid use-after-free after bzip decompress failure by Martin Panter · 8 years ago
  86. 34b9d14 Issue #28283: Remove flaky test test_sock_connect_sock_write_race again by Berker Peksag · 8 years ago
  87. e3c65a7 Misc asyncio improvements from upstream by Guido van Rossum · 8 years ago
  88. 07cfd50 Merge heads by Serhiy Storchaka · 8 years ago
  89. 00a0fc1 Issue #27942: String constants now interned recursively in tuples and frozensets. by Serhiy Storchaka · 8 years ago
  90. 1813aa1 Issue #25488: Stpp idle.py from adding a entry when it is a duplicate. by Terry Jan Reedy · 8 years ago
  91. 55f3ae6 Move idlelib/NEWS.txt entries for 2.x into a separate file -- NEWS2x.txt. by Terry Jan Reedy · 8 years ago
  92. 4254e8c build_ext: correctly parse the link_objects user option (closes #1703178) by Benjamin Peterson · 8 years ago
  93. c49b4d8 Remove disabled ctypes test by Martin Panter · 8 years ago
  94. 6c58c34 IDLE NEWS item and ack. by Terry Jan Reedy · 8 years ago
  95. aa5c2fd Issue #28303: Fix grammar in unittest.__doc__, patch by Shlomi Fish by Berker Peksag · 8 years ago
  96. c16387b Issue #28300: Fix typos, patch by Shlomi Fish by Berker Peksag · 8 years ago
  97. 957b756 Issue #28253: Fixed calendar functions for extreme months: 0001-01 and 9999-12. by Alexander Belopolsky · 8 years ago
  98. 4cefe74 Update typing.py and test_typing.py from upstream (https://github.com/python/typing) by Guido van Rossum · 8 years ago
  99. 63461bc Issue #28283: Remove flaky test test_sock_connect_sock_write_race by Berker Peksag · 8 years ago
  100. 47dee11 Issue #21578: Fixed misleading error message when ImportError called with by Serhiy Storchaka · 8 years ago