1. b22273e bpo-31672: Fix string.Template accidentally matched non-ASCII identifiers (GH-3872) by INADA Naoki · 7 years ago
  2. de07210 bpo-30058: Fixed buffer overflow in select.kqueue.control(). (#1095) by Serhiy Storchaka · 7 years ago
  3. eeb5ffd bpo-31537: Update readline documentation example. (GH-3925) by Brad Smith · 7 years ago
  4. 39ecb9c bpo-31728: Prevent crashes in _elementtree due to unsafe cleanup of Element.text and Element.tail (#3924) by Oren Milman · 7 years ago
  5. 6e3d6b5 bpo-31701: faulthandler: ignore MSC and COM Windows exception (#3929) by Victor Stinner · 7 years ago
  6. 0ccc0f6 bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() always return a list (#3840) by Oren Milman · 7 years ago
  7. f07e2b6 bpo-31642: Restore blocking "from" import by setting None in sys.modules. (#3834) by Serhiy Storchaka · 7 years ago
  8. 731e189 bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362) by Masayuki Yamamoto · 7 years ago
  9. b8ab9d3 bpo-31708: Allow async generator expressions in synchronous functions (#3905) by Yury Selivanov · 7 years ago
  10. faa135a bpo-31709: Drop support for asynchronous __aiter__. (#3903) by Yury Selivanov · 7 years ago
  11. 7faf7e5 closes bpo-31696: don't mention GCC in sys.version when building with clang (#3891) by Benjamin Peterson · 7 years ago
  12. ac31770 bpo-30406: Make async and await proper keywords (#1669) by Jelle Zijlstra · 7 years ago
  13. 36c1d1f PEP 553 built-in breakpoint() function (bpo-31353) (#3355) by Barry Warsaw · 7 years ago
  14. 4d07189 bpo-31556: asyncio.wait_for can cancel futures faster with timeout <= 0 (#3703) by Victor K · 7 years ago
  15. c1c47c1 bpo-31671: re: Convert RegexFlag to int before compile (GH-3862) by INADA Naoki · 7 years ago
  16. af810b3 closes bpo-27494: Fix 2to3 handling of trailing comma after a generator expression (#3771) by Jakub Stasiak · 7 years ago
  17. e14679c closes bpo-31596: Add an interface for pthread_getcpuclockid(3) (#3756) by pdox · 7 years ago
  18. 77732be bpo-30404: The -u option now makes the stdout and stderr streams totally unbuffered. (#1667) by Serhiy Storchaka · 7 years ago
  19. 0b5e61d bpo-30397: Add re.Pattern and re.Match. (#1646) by Serhiy Storchaka · 7 years ago
  20. 27c623c bpo-31675: Fix memory leaks in Tkinter's methods splitlist() and split() (#3866) by Serhiy Storchaka · 7 years ago
  21. 929b40a bpo-31673: Fixed typo in the name of Tkinter's method adderrorinfo(). (#3864) by Serhiy Storchaka · 7 years ago
  22. 85c0b89 bpo-31619: Fixed a ValueError when convert a string with large number of underscores (#3827) by Serhiy Storchaka · 7 years ago
  23. 1a87de7 bpo-31415: Add `-X importtime` option (GH-3490) by INADA Naoki · 7 years ago
  24. e8c368d bpo-31540: Allow passing multiprocessing context to ProcessPoolExecutor (#3682) by Thomas Moreau · 7 years ago
  25. 1023dbb bpo-31516: current_thread() should not return a dummy thread at shutdown (#3673) by Antoine Pitrou · 7 years ago
  26. 2102c78 bpo-31336: Speed up type creation. (#3279) by scoder · 7 years ago
  27. d6bb65f bpo-31460: Simplify the API of IDLE's Module Browser. (#3842) by Terry Jan Reedy · 7 years ago
  28. bfebfd8 bpo-31649: Make IDLE's _htest, _utest parameters keyword-only. (#3839) by Terry Jan Reedy · 7 years ago
  29. 7dc46d8 bpo-31592: Fix an assertion failure in Python parser in case of a bad unicodedata.normalize(). (#3767) by Oren Milman · 7 years ago
  30. 101a5e8 bpo-31648: Improve ElementPath (#3835) by scoder · 7 years ago
  31. b24cd05 bpo-30806 netrc.__repr__() is broken for writing to file (GH-2491) by James Sexton · 7 years ago
  32. 3d2b407 bpo-31574: importlib dtrace (#3749) by Christian Heimes · 7 years ago
  33. 01c6a88 bpo-31602: Fix an assertion failure in zipimporter.get_source() in case of a bad zlib.decompress() (GH-3784) by Oren Milman · 7 years ago
  34. d87b105 bpo-31638: Add compression support to zipapp (GH-3819) by Zhiming Wang · 7 years ago
  35. d15108a stop using ranlib (closes bpo-31625) (#3815) by Benjamin Peterson · 7 years ago
  36. 90f1d98 bpo-25351: avoid activate failure on strict shells (GH-3804) by Sorin Sbarnea · 7 years ago
  37. 288d1da remove support for BSD/OS (closes bpo-31624) (#3812) by Benjamin Peterson · 7 years ago
  38. a106aec bpo-11063, bpo-20519: avoid ctypes and improve import time for uuid (#3796) by Antoine Pitrou · 7 years ago
  39. d780b2d bpo-31478: Fix an assertion failure in random.seed() in case a seed has a bad __abs__() method. (#3596) by Oren Milman · 7 years ago
  40. 5837d04 bpo-31588: Validate return value of __prepare__() methods (GH-3764) by Oren Milman · 7 years ago
  41. 14086cf closes bpo-22140: Prevent double substitution of prefix in python-config.sh (#3769) by Michał Górny · 7 years ago
  42. c740e4f bpo-30347: Stop crashes when concurrently iterate over itertools.groupby() iterators. (#1557) by Serhiy Storchaka · 7 years ago
  43. 114454e bpo-28293: Don't completely dump the regex cache when full. (#3768) by Serhiy Storchaka · 7 years ago
  44. f1502d0 bpo-31569: correct PCBuild/ case to PCbuild/ in build scripts and docs (GH-3711) by Stefan Grönke · 7 years ago
  45. 57c2561 bpo-31311: Fix a SystemError and a crash in ctypes._CData.__setstate__(), in case of a bad __dict__. (#3254) by Oren Milman · 7 years ago
  46. 5b9299d bpo-30085: Improve documentation for operator (#1171) by Sanket Dasgupta · 7 years ago
  47. 5d3e800 bpo-31566: Fix an assertion failure in _warnings.warn() in case of a bad __name__ global. (#3717) by Oren Milman · 7 years ago
  48. 91fb0af bpo-31285: Fix an assertion failure and a SystemError in warnings.warn_explicit. (#3219) by Oren Milman · 7 years ago
  49. c247caf bpo-30346: An iterator produced by the itertools.groupby() iterator (#1569) by Serhiy Storchaka · 7 years ago
  50. 2b382dd bpo-31505: Fix an assertion failure in json, in case _json.make_encoder() received a bad encoder() argument. (#3643) by Oren Milman · 7 years ago
  51. cd99e79 bpo-31459: Rename IDLE's module browser from Class Browser to Module Browser. (#3704) by Cheryl Sabella · 7 years ago
  52. 99167f8 bpo-31559: Remove test order dependence in idle_test.test_browser. (#3708) by Terry Jan Reedy · 7 years ago
  53. 058de11 bpo-1612262: IDLE: Class Browser shows nested functions, classes (#2573) by Cheryl Sabella · 7 years ago
  54. 0a1ff24 bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#3372) by Neil Schemenauer · 7 years ago
  55. 35425d6 bpo-31389 Add an optional `header` argument to pdb.set_trace() (#3438) by Barry Warsaw · 7 years ago
  56. 5e02c78 bpo-31410: Optimized calling wrapper and classmethod descriptors. (#3481) by Serhiy Storchaka · 7 years ago
  57. b3a7796 bpo-27541: Reprs of subclasses of some classes now contain actual type name. (#3631) by Serhiy Storchaka · 7 years ago
  58. 9adda0c bpo-31351: Set return code in ensurepip when pip fails (GH-3626) by Igor Filatov · 7 years ago
  59. a96c96f bpo-31500: IDLE: Scale default fonts on HiDPI displays. (#3639) by Serhiy Storchaka · 7 years ago
  60. 3d1e2ab bpo-31532: Fix memory corruption due to allocator mix (#3679) by nurelin · 7 years ago
  61. b091bec bpo-31536: Avoid wholesale rebuild after `make regen-all` (#3678) by Antoine Pitrou · 7 years ago
  62. aaf6fc0 bpo-26510: make argparse subparsers required by default (#3027) by Anthony Sottile · 7 years ago
  63. 5252694 closes bpo-31525: require sqlite3_prepare_v2 (#3666) by Benjamin Peterson · 7 years ago
  64. a6c0c06 bpo-31506: Improve the error message logic for object.__new__ and object.__init__. (GH-3650) by Serhiy Storchaka · 7 years ago
  65. 865e4b4 bpo-31293: Fix crashes in truediv and mul of a timedelta by a float with a bad as_integer_ratio() method. (#3227) by Oren Milman · 7 years ago
  66. 9974e1b bpo-31315: Fix an assertion failure in imp.create_dynamic(), when spec.name is not a string. (#3257) by Oren Milman · 7 years ago
  67. 6db7033 bpo-31492: Fix assertion failures in case of a module with a bad __name__ attribute. (#3620) by Oren Milman · 7 years ago
  68. 450ceea Update PyDoc topics and NEWS blurbs for 3.7.0a1 by Ned Deily · 7 years ago
  69. e727d41 bpo-31499, xml.etree: Fix xmlparser_gc_clear() crash (#3641) by Victor Stinner · 7 years ago
  70. 132a7d7 bpo-31482: Missing bytes support for random.seed() version 1 (#3614) by Raymond Hettinger · 7 years ago
  71. 30b61b5 bpo-31490: Fix an assertion failure in ctypes in case an _anonymous_ attr is defined only outside _fields_. (#3615) by Oren Milman · 7 years ago
  72. a6bb313 bpo-31493: Fix code context update and font update timers. (#3622) by Terry Jan Reedy · 7 years ago
  73. 5777ecc bpo-31488: IDLE - update former extensions when options change. (#3612) by Terry Jan Reedy · 7 years ago
  74. 3f9eee6 bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593) by Eric Snow · 7 years ago
  75. e82c034 bpo-31431: SSLContext.check_hostname auto-sets CERT_REQUIRED (#3531) by Christian Heimes · 7 years ago
  76. a170fa1 bpo-31346: Use PROTOCOL_TLS_CLIENT/SERVER (#3058) by Christian Heimes · 7 years ago
  77. 4df60f1 bpo-31386: Custom wrap_bio and wrap_socket type (#3426) by Christian Heimes · 7 years ago
  78. ff70289 bpo-314777: IDLE - improve rstrip entry in doc (#3602) by Terry Jan Reedy · 7 years ago
  79. b2e5794 bpo-31338 (#3374) by Barry Warsaw · 7 years ago
  80. d384a81 bpo-31480: IDLE - fix tests to pass with zzdummy extension disabled. (#3590) by Terry Jan Reedy · 7 years ago
  81. 6a396c9 bpo-31128: Allow pydoc to bind to arbitrary hostnames (#3011) by Feanil Patel · 7 years ago
  82. c8d8e15 bpo-31455: Fix an assertion failure in ElementTree.XMLParser(). (#3545) by scoder · 7 years ago
  83. 0b3a87e bpo-31471: Fix assertion failure in subprocess.Popen() on Windows, in case env has a bad keys() method. (#3580) by Oren Milman · 7 years ago
  84. f350a26 bpo-28556: typing.get_type_hints: better globalns for classes and modules (#3582) by Łukasz Langa · 7 years ago
  85. d393c1b bpo-28411: Isolate PyInterpreterState.modules (#3575) by Eric Snow · 7 years ago
  86. 1bbd482 bpo-31457: Allow for nested LoggerAdapter objects (#3551) by Łukasz Langa · 7 years ago
  87. 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 7 years ago
  88. 65bc620 bpo-28556: Minor updates to typing module (#3550) by Ivan Levkivskyi · 7 years ago
  89. f6e61df bpo-31418: Fix an assertion failure in PyErr_WriteUnraisable() in case of an exception with a bad __module__ attribute. (#3539) by Oren Milman · 7 years ago
  90. acb9fa7 bpo-31234, socket.create_connection(): Fix ref cycle (#3546) by Victor Stinner · 7 years ago
  91. b8f4163 bpo-31233: socketserver.ThreadingMixIn.server_close() (#3523) by Victor Stinner · 7 years ago
  92. 98758bc bpo-31421: Document how IDLE runs tkinter programs. (#3513) by Terry Jan Reedy · 7 years ago
  93. 9d984fd bpo-31416: Fix assertion failures in case of a bad warnings.filters or warnings.defaultaction. (#3496) by Oren Milman · 7 years ago
  94. 667522e bpo-31414: IDLE -- fix tk entry box tests by deleting first. (#3501) by Terry Jan Reedy · 7 years ago
  95. 252033d bpo-31411: Prevent raising a SystemError in case warnings.onceregistry is not a dictionary. (#3485) by Oren Milman · 7 years ago
  96. 58fc71c bpo-27099: IDLE - Convert built-in extensions to regular features (#2494) by wohlganger · 7 years ago
  97. 8b57d73 bpo-28638: Optimize namedtuple() creation time by minimizing use of exec() (#3454) by Raymond Hettinger · 7 years ago
  98. b84bcc4 bpo-31392: Update SSL build for 1.1.0 (#3448) by Steve Dower · 7 years ago
  99. efb1d0a bpo-29639: change test.support.HOST to "localhost" by Gregory P. Smith · 7 years ago
  100. e6eb48c bpo-31400: Improve SSL error handling on Windows (#3463) by Steve Dower · 7 years ago