1. a9f9687 bpo-40094: Enhance threading tests (GH-19260) by Victor Stinner · 4 years, 5 months ago
  2. 27c6231 bpo-40094: Enhance fork and wait tests (GH-19259) by Victor Stinner · 4 years, 5 months ago
  3. 278c1e1 bpo-40094: Add test.support.wait_process() (GH-19254) by Victor Stinner · 4 years, 5 months ago
  4. 01e743d bpo-40003: test.bisect_cmd copies Python options (GH-19246) by Victor Stinner · 4 years, 5 months ago
  5. 63ba5cc bpo-40121: Fixes audit event raised on creating a new socket (GH-19238) by Steve Dower · 4 years, 5 months ago
  6. ef67512 bpo-40108: Improve the error message in runpy when importing a module that includes the extension (GH-19239) by Pablo Galindo · 4 years, 5 months ago
  7. 0c5ad54 Fix bug in test_collections.py (#19221) by Curtis Bucher · 4 years, 5 months ago
  8. 53e4c91 bpo-40077: Convert _abc module to use PyType_FromSpec() (GH-19202) by Dong-hee Na · 4 years, 5 months ago
  9. 614f172 bpo-39073: validate Address parts to disallow CRLF (#19007) by Ashwin Ramaswami · 4 years, 6 months ago
  10. 34a49aa bpo-38002: Use False/True for IDLE pyshell bools (GH-19203) by Terry Jan Reedy · 4 years, 6 months ago
  11. 34b0598 bpo-40086: Update/fix test_etree test case in test_typing (GH-19189) by Furkan Önder · 4 years, 6 months ago
  12. b61b818 bpo-39812: Remove daemon threads in concurrent.futures (GH-19149) by Kyle Stanley · 4 years, 6 months ago
  13. d8ff44c bpo-40089: Fix threading._after_fork() (GH-19191) by Victor Stinner · 4 years, 6 months ago
  14. e0b8101 bpo-1812: Fix newline conversion when doctest.testfile loads from a package whose loader has a get_data method (GH-17385) by Peter Donis · 4 years, 6 months ago
  15. cb6534e bpo-40067: Improve error messages for multiple star expressions in assignments (GH-19168) by Furkan Önder · 4 years, 6 months ago
  16. 89a2209 bpo-40016: re docstring: Clarify relationship of inline and argument flags (#19078) by Ram Rachum · 4 years, 6 months ago
  17. 8f1ed21 bpo-36144: Add union operators to WeakValueDictionary584 (#19127) by Curtis Bucher · 4 years, 6 months ago
  18. 15e5024 bpo-40029 mark test_importlib.test_zip as requiring zlib (#19105) by Roman Yurchak · 4 years, 6 months ago
  19. 83d46e0 bpo-40050: Fix importlib._bootstrap_external (GH-19135) by Victor Stinner · 4 years, 6 months ago
  20. 5804f87 bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120) by Victor Stinner · 4 years, 6 months ago
  21. fd88a02 Merge tag 'v3.9.0a5' by Łukasz Langa · 4 years, 6 months ago
  22. 25e580a bpo-36144: Add union operators to WeakKeyDictionary (#19106) by Curtis Bucher · 4 years, 6 months ago
  23. f393b2c bpo-36144: Add PEP 584 operators to collections.ChainMap (#18832) by Curtis Bucher · 4 years, 6 months ago
  24. dcd4c4f Python 3.9.0a5 by Łukasz Langa · 4 years, 6 months ago
  25. 9a81ab1 bpo-39830: Add zipfile.Path to __all__ (GH-19115) by Zackery Spytz · 4 years, 6 months ago
  26. bace59d bpo-39999: Improve compatibility of the ast module. (GH-19056) by Serhiy Storchaka · 4 years, 6 months ago
  27. 044cf94 bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516) by Ronald Oussoren · 4 years, 6 months ago
  28. b33e525 bpo-36543: Remove the xml.etree.cElementTree module. (GH-19108) by Serhiy Storchaka · 4 years, 6 months ago
  29. b146568 bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. (GH-18942) by Serhiy Storchaka · 4 years, 6 months ago
  30. 684d2b9 bpo-24916: Remove an outdated comment. (GH-19101) by Serhiy Storchaka · 4 years, 6 months ago
  31. 7bf069b bpo-40019: Skip test_gdb if Python was optimized (GH-19081) by Victor Stinner · 4 years, 6 months ago
  32. 9052f7a bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (GH-18968) by Batuhan Taşkaya · 4 years, 6 months ago
  33. 0ac59f9 bpo-40000: Improve error messages when validating invalid ast.Constant nodes (GH-19055) by Batuhan Taşkaya · 4 years, 6 months ago
  34. d112c60 bpo-39220: Do not optimise annotation if 'from __future__ import annotations' is used (GH-17866) by Pablo Galindo · 4 years, 6 months ago
  35. d18de46 bpo-27807: Skip test_site.test_startup_imports() if pth file (GH-19060) by Victor Stinner · 4 years, 6 months ago
  36. 611836a bpo-39957: Change Signature.parameters to OrderedDict (GH-18988) by Jens Reidel · 4 years, 6 months ago
  37. 23ef89d bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051) by Victor Stinner · 4 years, 6 months ago
  38. d469d66 bpo-39719: Remove softspace from tempfile.SpooledTemporaryFile (GH-18599) by Shantanu · 4 years, 6 months ago
  39. ebf6bb9 bpo-39991: Enhance uuid parser for MAC address (GH-19045) by Victor Stinner · 4 years, 6 months ago
  40. 5b1ef20 bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738) by Victor Stinner · 4 years, 6 months ago
  41. 5226894 bpo-26067: Do not fail test_shutil / chown when gid/uid cannot be resolved (#19032) by Matthias Braun · 4 years, 6 months ago
  42. eb886db bpo-39991: uuid._netstat_getnode() ignores IPv6 addresses (GH-19043) by Victor Stinner · 4 years, 6 months ago
  43. 58ec58a4 bpo-39656: Ensure `bin/python3.#` is always present in virtual environments on POSIX (GH-19030) by Anthony Sottile · 4 years, 6 months ago
  44. 4ab362c bpo-39638: Keep ASDL signatures in the AST nodes (GH-18515) by Batuhan Taşkaya · 4 years, 6 months ago
  45. 5b66ec1 bpo-38870: Implement support for ast.FunctionType in ast.unparse (GH-19016) by Batuhan Taşkaya · 4 years, 6 months ago
  46. ac10e0c bpo-39360: Ensure all workers exit when finalizing a multiprocessing Pool (GH-19009) by Batuhan Taşkaya · 4 years, 6 months ago
  47. 61ac612 bpo-39507: Add HTTP status 418 "I'm a Teapot" (GH-18291) by Ross · 4 years, 6 months ago
  48. 9023581 bpo-39965: Correctly raise SyntaxError if await is used outside async functions when PyCF_ALLOW_TOP_LEVEL_AWAIT is set (GH-19010) by Pablo Galindo · 4 years, 6 months ago
  49. 9165add bpo-38576: Disallow control characters in hostnames in http.client (GH-18995) by Ashwin Ramaswami · 4 years, 6 months ago
  50. da52be4 bpo-39509: Update HTTP status code to follow IANA (GH-18294) by Dong-hee Na · 4 years, 6 months ago
  51. 5208b4b bpo-39871: Fix possible SystemError in atan2, copysign and remainder (GH-18806) by Zackery Spytz · 4 years, 6 months ago
  52. 3a8c562 Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985) by Inada Naoki · 4 years, 6 months ago
  53. c7ad974 bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659) by Inada Naoki · 4 years, 6 months ago
  54. 6d674a1 bpo-36144: OrderedDict Union (PEP 584) (#18967) by Brandt Bucher · 4 years, 6 months ago
  55. d648ef1 bpo-36144: Update os.environ and os.environb for PEP 584 (#18911) by Charles Burkland · 4 years, 6 months ago
  56. 3f2f4fe bpo-39947: Move get_recursion_depth() to _testinternalcapi (GH-18974) by Victor Stinner · 4 years, 6 months ago
  57. c846ef0 bpo-39936: _aix_support uses _bootsubprocess (GH-18970) by Victor Stinner · 4 years, 6 months ago
  58. 1ae9cde bpo-39689: Do not test undefined casts to _Bool (GH-18964) by Stefan Krah · 4 years, 6 months ago
  59. c00c86b Fix syntax error in an example in the ast documentation and sync docstrings (GH-18946) by Pablo Galindo · 4 years, 6 months ago
  60. 276a84a bpo-38080: Added "getproxies" to urllib fixes in the 2to3 tool (GH-16167) by José Roberto Meza Cabrera · 4 years, 6 months ago
  61. 704e206 bpo-39916: Use os.scandir() as context manager in Path.glob(). (GH-18880) by Serhiy Storchaka · 4 years, 6 months ago
  62. e553f20 bpo-39915: Ensure await_args_list is updated according to the order in which coroutines were awaited (GH-18924) by Karthikeyan Singaravelan · 4 years, 6 months ago
  63. c77aa2d bpo-39926: Update unicodedata checksum tests for Unicode 13.0 update. (GH-18913) by Benjamin Peterson · 4 years, 6 months ago
  64. 51796e5 Update some www.unicode.org URLs to use HTTPS. (GH-18912) by Benjamin Peterson · 4 years, 6 months ago
  65. 051b9d0 closes bpo-39926: Update Unicode to 13.0.0. (GH-18910) by Benjamin Peterson · 4 years, 6 months ago
  66. bd87a7f Updates functools.py with consistent quotes (GH-18825) by Nikita Sobolev · 4 years, 6 months ago
  67. 88f82b2 bpo-38662: ensurepip invokes pip via runpy (GH-18901) by Miro Hrončok · 4 years, 6 months ago
  68. 13d52c2 bpo-34822: Simplify AST for subscription. (GH-9605) by Serhiy Storchaka · 4 years, 6 months ago
  69. 00d7cd8 bpo-38075: Fix random_seed(): use PyObject_CallOneArg() (GH-18897) by Victor Stinner · 4 years, 6 months ago
  70. 8510f43 bpo-1294959: Add sys.platlibdir attribute (GH-18381) by Victor Stinner · 4 years, 6 months ago
  71. 700cb58 bpo-39828: Fix json.tool to catch BrokenPipeError (GH-18779) by Dong-hee Na · 4 years, 6 months ago
  72. addaaaa bpo-39763: Add _bootsubprocess to build Python on AIX (GH-18872) by Victor Stinner · 4 years, 6 months ago
  73. 9ad58ac bpo-19466: Py_Finalize() clears daemon threads earlier (GH-18848) by Victor Stinner · 4 years, 6 months ago
  74. 8e9c47a bpo-28577: Special case added to IP v4 and v6 hosts for /32 and /128 networks (GH-18757) by Pete Wicken · 4 years, 6 months ago
  75. b7e9525 bpo-36287: Make ast.dump() not output optional fields and attributes with default values. (GH-18843) by Serhiy Storchaka · 4 years, 6 months ago
  76. 363fab8 bpo-27115: Use Query subclass for IDLE editor Goto (GH-18871) by Terry Jan Reedy · 4 years, 6 months ago
  77. e7cab7f bpo-38870: Simplify sequence interleaves in ast.unparse (GH-17892) by Batuhan Taşkaya · 4 years, 6 months ago
  78. 3225b9f bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883) by Victor Stinner · 4 years, 6 months ago
  79. e5ccc94 bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase is called with invalid base. (GH-18863) by Serhiy Storchaka · 4 years, 6 months ago
  80. 6012f30 bpo-39850: Add support for abstract sockets in multiprocessing (GH-18866) by Pablo Galindo · 4 years, 6 months ago
  81. fc72ab6 bpo-38691: importlib ignores PYTHONCASEOK if -E is used (GH-18627) by idomic · 4 years, 6 months ago
  82. e53a393 bpo-27115: Move IDLE Query error blanking (GH-18868) by Terry Jan Reedy · 4 years, 6 months ago
  83. 0911ea5 bpo-39517: Allow runpy.run_path() to accept path-like objects (GH-18699) by Maor Kleinberger · 4 years, 6 months ago
  84. 4ca060d bpo-39885: IDLE context menu clears selection (#18859) by Terry Jan Reedy · 4 years, 6 months ago
  85. 2522db1 bpo-39852: IDLE 'Go to line' deletes selection, updates status (GH-18801) by Terry Jan Reedy · 4 years, 6 months ago
  86. 4663f66 bpo-36144: Update MappingProxyType with PEP 584's operators (#18814) by Brandt Bucher · 4 years, 6 months ago
  87. eb7560a bpo-38894: Fix pathlib.Path.glob in the presence of symlinks and insufficient permissions (GH-18815) by Pablo Galindo · 4 years, 6 months ago
  88. c4928fc bpo-39889: Fix ast.unparse() for subscript. (GH-18824) by Serhiy Storchaka · 4 years, 6 months ago
  89. 9e5d30c bpo-39882: Py_FatalError() logs the function name (GH-18819) by Victor Stinner · 4 years, 6 months ago
  90. 57c9d17 bpo-36144: Implement defaultdict union (GH-18729) by Brandt Bucher · 4 years, 6 months ago
  91. f7b5d41 bpo-39855: Fix test_subprocess if nobody user doesn't exist (GH-18781) by Victor Stinner · 4 years, 6 months ago
  92. 85cf1d5 bpo-13487: Use sys.modules.copy() in inspect.getmodule() for thread safety. (GH-18786) by Gregory P. Smith · 4 years, 6 months ago
  93. 942f7a2 bpo-39674: Revert "bpo-37330: open() no longer accept 'U' in file mode (GH-16959)" (GH-18767) by Victor Stinner · 4 years, 6 months ago
  94. d82e469 bpo-39639: Remove the AST "Suite" node and associated code (GH-18513) by Batuhan Taşkaya · 4 years, 6 months ago
  95. 1ec63b6 bpo-39763: distutils.spawn now uses subprocess (GH-18743) by Victor Stinner · 4 years, 6 months ago
  96. 22a9a54 bpo-39826: add getConnection() hook to logging HTTPHandler (GH-18745) by l0rb · 4 years, 6 months ago
  97. be501ca bpo-39702: Relax grammar restrictions on decorators (PEP 614) (GH-18570) by Brandt Bucher · 4 years, 6 months ago
  98. 469325c bpo-35712: Make using NotImplemented in a boolean context issue a deprecation warning (GH-13195) by MojoVampire · 4 years, 6 months ago
  99. e0acec1 bpo-12915: Skip test_pkgutil.test_name_resolution() non-encodable filenames (GH-18720) by Michael Felt · 4 years, 6 months ago
  100. 6daa37f bpo-38091: Import deadlock detection causes deadlock (GH-17518) by Armin Rigo · 4 years, 6 months ago