1. 5c3cda0 bpo-39947: Add PyThreadState_GetID() function (GH-19163) by Victor Stinner · 4 years, 5 months ago
  2. 0e427c6 bpo-39947: Add _PyThreadState_GetDict() function (GH-19160) by Victor Stinner · 4 years, 5 months ago
  3. 302e5a8 bpo-19698: Document when importlib.machinery.FrozenImporter gained spec-related methods (GH-19158) by Brett Cannon · 4 years, 5 months ago
  4. 3072338 bpo-39947: Use PyThreadState_GetFrame() (GH-19159) by Victor Stinner · 4 years, 5 months ago
  5. 89a2209 bpo-40016: re docstring: Clarify relationship of inline and argument flags (#19078) by Ram Rachum · 4 years, 5 months ago
  6. 87d3b9d bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) by Victor Stinner · 4 years, 5 months ago
  7. ace018c bpo-40050: Rephrase NEWS entry (GH-19148) by Victor Stinner · 4 years, 5 months ago
  8. 7668a8b Use calloc-based functions, not malloc. (GH-19152) by Andy Lester · 4 years, 5 months ago
  9. 7dd549e bpo-1635741: Port _functools module to multiphase initialization (PEP 489) (GH-19151) by Paulo Henrique Silva · 4 years, 5 months ago
  10. f3d5ac4 bpo-1635741: Port operator module to multiphase initialization (PEP 489) (GH-19150) by Paulo Henrique Silva · 4 years, 5 months ago
  11. 8f1ed21 bpo-36144: Add union operators to WeakValueDictionary584 (#19127) by Curtis Bucher · 4 years, 5 months ago
  12. 37fcbb6 bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119) by Dong-hee Na · 4 years, 5 months ago
  13. 15e5024 bpo-40029 mark test_importlib.test_zip as requiring zlib (#19105) by Roman Yurchak · 4 years, 5 months ago
  14. 93460d0 bpo-1635741: Port _weakref extension module to multiphase initialization (PEP 489) (GH-19140) by Victor Stinner · 4 years, 5 months ago
  15. f5c7cab bpo-40014: Fix os.getgrouplist() (GH-19126) by Victor Stinner · 4 years, 5 months ago
  16. 4b3252c bpo-40013: Clarify documentation of restval in csv.DictReader (GH-19099) by Juhana Jauhiainen · 4 years, 5 months ago
  17. 83d46e0 bpo-40050: Fix importlib._bootstrap_external (GH-19135) by Victor Stinner · 4 years, 5 months ago
  18. 9b8e74c Clarify a guarantee of the logging module. (GH-19132) by Gregory P. Smith · 4 years, 5 months ago
  19. 5804f87 bpo-20526: Fix PyThreadState_Clear(): don't decref frame (GH-19120) by Victor Stinner · 4 years, 5 months ago
  20. 472fc84 bpo-39689: Do not use native packing for format "?" with standard size (GH-18969) by Stefan Krah · 4 years, 5 months ago
  21. 6000087 closes bpo-40017: Add CLOCK_TAI constant to the time module. (GH-19096) by Russell Owen · 4 years, 5 months ago
  22. 70d9d74 Updated documentation for FOR_ITER (GH-19113) by laike9m · 4 years, 5 months ago
  23. 188078c Revert "bpo-1635741: Port _weakref extension module to multiphase initialization (PEP 489) (GH-19084)" (#19128) by Victor Stinner · 4 years, 5 months ago
  24. 7979298 Post 3.9.0a5 by Łukasz Langa · 4 years, 5 months ago
  25. fd88a02 Merge tag 'v3.9.0a5' by Łukasz Langa · 4 years, 5 months ago
  26. 25e580a bpo-36144: Add union operators to WeakKeyDictionary (#19106) by Curtis Bucher · 4 years, 5 months ago
  27. 8dd1792 bpo-40036: Deleting duplicates in itertoolsmodule.c (GH-18958) by AlphaHot · 4 years, 5 months ago
  28. f393b2c bpo-36144: Add PEP 584 operators to collections.ChainMap (#18832) by Curtis Bucher · 4 years, 5 months ago
  29. 8ec7370 bpo-40014: Fix os.getgrouplist() on macOS (GH-19118) by Victor Stinner · 4 years, 5 months ago
  30. bd409bb bpo-1635741: Port time module to multiphase initialization (PEP 489) (GH-19107) by Paulo Henrique Silva · 4 years, 5 months ago
  31. dcd4c4f Python 3.9.0a5 by Łukasz Langa · 4 years, 5 months ago
  32. 9a81ab1 bpo-39830: Add zipfile.Path to __all__ (GH-19115) by Zackery Spytz · 4 years, 5 months ago
  33. bace59d bpo-39999: Improve compatibility of the ast module. (GH-19056) by Serhiy Storchaka · 4 years, 5 months ago
  34. 044cf94 bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516) by Ronald Oussoren · 4 years, 5 months ago
  35. 05e4a29 bpo-40024: Add PyModule_AddType() helper function (GH-19088) by Dong-hee Na · 4 years, 5 months ago
  36. b33e525 bpo-36543: Remove the xml.etree.cElementTree module. (GH-19108) by Serhiy Storchaka · 4 years, 5 months ago
  37. b146568 bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. (GH-18942) by Serhiy Storchaka · 4 years, 5 months ago
  38. 684d2b9 bpo-24916: Remove an outdated comment. (GH-19101) by Serhiy Storchaka · 4 years, 5 months ago
  39. 6723e93 bpo-39946: Remove _PyThreadState_GetFrame (GH-19094) by Victor Stinner · 4 years, 5 months ago
  40. fd1e1a1 bpo-39947: Add PyThreadState_GetFrame() function (GH-19092) by Victor Stinner · 4 years, 5 months ago
  41. d831688 bpo-40010: Optimize pending calls in multithreaded applications (GH-19091) by Victor Stinner · 4 years, 5 months ago
  42. d2a8e5b bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087) by Victor Stinner · 4 years, 5 months ago
  43. da2914d bpo-40010: Pass tstate to ceval GIL functions (GH-19077) by Victor Stinner · 4 years, 5 months ago
  44. 8334f30 bpo-1635741: Port _weakref extension module to multiphase initialization (PEP 489) (GH-19084) by Hai Shi · 4 years, 5 months ago
  45. 2de7ac9 bpo-39797 Changes to socketserver.BaseServer's shutdown() method. (GH-18929) by amaajemyfren · 4 years, 5 months ago
  46. 7bf069b bpo-40019: Skip test_gdb if Python was optimized (GH-19081) by Victor Stinner · 4 years, 5 months ago
  47. a36adfa bpo-39877: 4th take_gil() fix for daemon threads (GH-19080) by Victor Stinner · 4 years, 5 months ago
  48. c691f20 Fix "versionchanged" for pow named arguments (GH-19042) by Mark Dickinson · 4 years, 5 months ago
  49. 13397ee bpo-39824: Convert PyModule_GetState() to get_module_state() (GH-19076) by Hai Shi · 4 years, 5 months ago
  50. 5a3a71d bpo-40010: Optimize signal handling in multithreaded applications (GH-19067) by Victor Stinner · 4 years, 5 months ago
  51. 77248a2 bpo-1635741: Port _collections module to multiphase initialization (GH-19074) by Dong-hee Na · 4 years, 5 months ago
  52. 9052f7a bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (GH-18968) by Batuhan Taşkaya · 4 years, 5 months ago
  53. 0ac59f9 bpo-40000: Improve error messages when validating invalid ast.Constant nodes (GH-19055) by Batuhan Taşkaya · 4 years, 5 months ago
  54. 50e6e99 bpo-39984: Move pending calls to PyInterpreterState (GH-19066) by Victor Stinner · 4 years, 5 months ago
  55. 3cde884 Remove unused variable to fix compiler warning in _threadmodule.c (GH-19064) by Pablo Galindo · 4 years, 5 months ago
  56. d112c60 bpo-39220: Do not optimise annotation if 'from __future__ import annotations' is used (GH-17866) by Pablo Galindo · 4 years, 5 months ago
  57. 8849e59 bpo-39984: trip_signal() uses PyGILState_GetThisThreadState() (GH-19061) by Victor Stinner · 4 years, 5 months ago
  58. 1c60567 bpo-37207: Use PEP 590 vectorcall to speed up frozenset() (GH-19053) by Dong-hee Na · 4 years, 5 months ago
  59. d18de46 bpo-27807: Skip test_site.test_startup_imports() if pth file (GH-19060) by Victor Stinner · 4 years, 5 months ago
  60. 4657a8a bpo-1635741: Port _heapq module to multiphase initialization (GH19057) by Dong-hee Na · 4 years, 5 months ago
  61. 56bfdeb bpo-39984: Pass tstate to _PyEval_SignalAsyncExc() (GH-19049) by Victor Stinner · 4 years, 5 months ago
  62. 611836a bpo-39957: Change Signature.parameters to OrderedDict (GH-18988) by Jens Reidel · 4 years, 5 months ago
  63. 29356e0 bpo-39877: Fix take_gil() for daemon threads (GH-19054) by Victor Stinner · 4 years, 5 months ago
  64. 23ef89d bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051) by Victor Stinner · 4 years, 5 months ago
  65. d7fabc1 bpo-39984: Pass tstate to handle_signals() (GH-19050) by Victor Stinner · 4 years, 5 months ago
  66. 2fe815e bpo-38373: Change list overallocating strategy. (GH-18952) by Serhiy Storchaka · 4 years, 5 months ago
  67. d469d66 bpo-39719: Remove softspace from tempfile.SpooledTemporaryFile (GH-18599) by Shantanu · 4 years, 5 months ago
  68. 6b97598 bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038) by Serhiy Storchaka · 4 years, 5 months ago
  69. dab8423 bpo-39984: Add PyInterpreterState.ceval (GH-19047) by Victor Stinner · 4 years, 5 months ago
  70. 514c469 bpo-1635741: Port itertools module to multiphase initialization (GH-19044) by Dong-hee Na · 4 years, 5 months ago
  71. ebf6bb9 bpo-39991: Enhance uuid parser for MAC address (GH-19045) by Victor Stinner · 4 years, 5 months ago
  72. 5b1ef20 bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738) by Victor Stinner · 4 years, 5 months ago
  73. 5226894 bpo-26067: Do not fail test_shutil / chown when gid/uid cannot be resolved (#19032) by Matthias Braun · 4 years, 5 months ago
  74. 982307b bpo-39943: Remove unused self from find_nfc_index() (GH-18973) by Andy Lester · 4 years, 5 months ago
  75. 61cb3d0 bpo-39987: Simplify setting lineno in the compiler. (GH-19037) by Serhiy Storchaka · 4 years, 5 months ago
  76. eb886db bpo-39991: uuid._netstat_getnode() ignores IPv6 addresses (GH-19043) by Victor Stinner · 4 years, 5 months ago
  77. a45b695 bpo-39973: Fix the docs for PyObject_GenericSetDict() (GH-19026) by Zackery Spytz · 4 years, 5 months ago
  78. 58ec58a4 bpo-39656: Ensure `bin/python3.#` is always present in virtual environments on POSIX (GH-19030) by Anthony Sottile · 4 years, 5 months ago
  79. 2037502 bpo-1635741: Port _ctypes_test extension to multiphase initialization (PEP 489) (GH-19012) by Hai Shi · 4 years, 5 months ago
  80. 6ff79f65 bpo-37207: Use PEP 590 vectorcall to speed up set() constructor (GH-19019) by Dong-hee Na · 4 years, 5 months ago
  81. 5f104d5 bpo-39968: Fix a typo error in get_readline_state() (GH-19028) by Hai Shi · 4 years, 5 months ago
  82. f6a5850 bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977) by Victor Stinner · 4 years, 5 months ago
  83. 356c878 bpo-1635741: Port _statistics module to multiphase initialization (GH-19015) by Dong-hee Na · 4 years, 5 months ago
  84. 87ec86c bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980) by Dong-hee Na · 4 years, 5 months ago
  85. c98f87f bpo-37207: Use _PyArg_CheckPositional() for tuple vectorcall (GH-18986) by Dong-hee Na · 4 years, 5 months ago
  86. f707d94 bpo-39968: Convert extension modules' macros of get_module_state() to inline functions (GH-19017) by Hai Shi · 4 years, 5 months ago
  87. 4ab362c bpo-39638: Keep ASDL signatures in the AST nodes (GH-18515) by Batuhan Taşkaya · 4 years, 5 months ago
  88. 5b66ec1 bpo-38870: Implement support for ast.FunctionType in ast.unparse (GH-19016) by Batuhan Taşkaya · 4 years, 5 months ago
  89. ac10e0c bpo-39360: Ensure all workers exit when finalizing a multiprocessing Pool (GH-19009) by Batuhan Taşkaya · 4 years, 5 months ago
  90. c81609e Fix a possible refleak in tupleobject.c (GH-19018) by Hai Shi · 4 years, 5 months ago
  91. 8689209 bpo-39969: Remove ast.Param node class as is no longer used (GH-19020) by Batuhan Taşkaya · 4 years, 5 months ago
  92. 61ac612 bpo-39507: Add HTTP status 418 "I'm a Teapot" (GH-18291) by Ross · 4 years, 5 months ago
  93. 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, 5 months ago
  94. 33238ec Link to list of keywords in the laguage reference (GH-18024) by Борис Верховский · 4 years, 5 months ago
  95. 9165add bpo-38576: Disallow control characters in hostnames in http.client (GH-18995) by Ashwin Ramaswami · 4 years, 5 months ago
  96. 6672c16 bpo-39677: dis: rename the operand of MAKE_FUNCTION from `argc` to `flags` for 3.6+ (GC-18550) by Taine Zhao · 4 years, 5 months ago
  97. da52be4 bpo-39509: Update HTTP status code to follow IANA (GH-18294) by Dong-hee Na · 4 years, 5 months ago
  98. b81f40f bpo-39582: ossaudiodev module update helpers signature for ioctl calls. (GH-18412) by David CARLIER · 4 years, 5 months ago
  99. 57c7810 bpo-39585: Delete a pending comment in _warning.c (GH-18414) by Hai Shi · 4 years, 5 months ago
  100. faf626b Make cpython/abstract.h compatible with C90 (#18481) by Peter Eisentraut · 4 years, 5 months ago