Python 3.9.0a5
  1. bace59d bpo-39999: Improve compatibility of the ast module. (GH-19056) by Serhiy Storchaka · 5 years ago
  2. 044cf94 bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516) by Ronald Oussoren · 5 years ago
  3. 05e4a29 bpo-40024: Add PyModule_AddType() helper function (GH-19088) by Dong-hee Na · 5 years ago
  4. 6723e93 bpo-39946: Remove _PyThreadState_GetFrame (GH-19094) by Victor Stinner · 5 years ago
  5. fd1e1a1 bpo-39947: Add PyThreadState_GetFrame() function (GH-19092) by Victor Stinner · 5 years ago
  6. d831688 bpo-40010: Optimize pending calls in multithreaded applications (GH-19091) by Victor Stinner · 5 years ago
  7. d2a8e5b bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087) by Victor Stinner · 5 years ago
  8. da2914d bpo-40010: Pass tstate to ceval GIL functions (GH-19077) by Victor Stinner · 5 years ago
  9. a36adfa bpo-39877: 4th take_gil() fix for daemon threads (GH-19080) by Victor Stinner · 5 years ago
  10. 5a3a71d bpo-40010: Optimize signal handling in multithreaded applications (GH-19067) by Victor Stinner · 5 years ago
  11. 9052f7a bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (GH-18968) by Batuhan Taşkaya · 5 years ago
  12. 0ac59f9 bpo-40000: Improve error messages when validating invalid ast.Constant nodes (GH-19055) by Batuhan Taşkaya · 5 years ago
  13. 50e6e99 bpo-39984: Move pending calls to PyInterpreterState (GH-19066) by Victor Stinner · 5 years ago
  14. d112c60 bpo-39220: Do not optimise annotation if 'from __future__ import annotations' is used (GH-17866) by Pablo Galindo · 5 years ago
  15. 8849e59 bpo-39984: trip_signal() uses PyGILState_GetThisThreadState() (GH-19061) by Victor Stinner · 5 years ago
  16. 56bfdeb bpo-39984: Pass tstate to _PyEval_SignalAsyncExc() (GH-19049) by Victor Stinner · 5 years ago
  17. 29356e0 bpo-39877: Fix take_gil() for daemon threads (GH-19054) by Victor Stinner · 5 years ago
  18. 23ef89d bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051) by Victor Stinner · 5 years ago
  19. d7fabc1 bpo-39984: Pass tstate to handle_signals() (GH-19050) by Victor Stinner · 5 years ago
  20. 6b97598 bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038) by Serhiy Storchaka · 5 years ago
  21. dab8423 bpo-39984: Add PyInterpreterState.ceval (GH-19047) by Victor Stinner · 5 years ago
  22. 61cb3d0 bpo-39987: Simplify setting lineno in the compiler. (GH-19037) by Serhiy Storchaka · 5 years ago
  23. f6a5850 bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977) by Victor Stinner · 5 years ago
  24. 87ec86c bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980) by Dong-hee Na · 5 years ago
  25. 4ab362c bpo-39638: Keep ASDL signatures in the AST nodes (GH-18515) by Batuhan Taşkaya · 5 years ago
  26. 8689209 bpo-39969: Remove ast.Param node class as is no longer used (GH-19020) by Batuhan Taşkaya · 5 years ago
  27. 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 · 5 years ago
  28. 57c7810 bpo-39585: Delete a pending comment in _warning.c (GH-18414) by Hai Shi · 5 years ago
  29. 8fb02b6 bpo-39947: Add PyThreadState_GetInterpreter() (GH-18981) by Victor Stinner · 5 years ago
  30. be79373 bpo-39947: Add PyInterpreterState_Get() function (GH-18979) by Victor Stinner · 5 years ago
  31. ff4584c bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978) by Victor Stinner · 5 years ago
  32. 309d7cc bpo-35370: Add _PyEval_SetTrace() function (GH-18975) by Victor Stinner · 5 years ago
  33. 0b72b23 bpo-38500: Add _PyInterpreterState_SetEvalFrameFunc() (GH-17340) by Victor Stinner · 5 years ago
  34. 75cd5bf Remove unused args from two pylifecycle.c functions (GH-18867) by Andy Lester · 5 years ago
  35. 64838ce bpo-39847: EnterNonRecursiveMutex() uses GetTickCount64() (GH-18780) by bobince · 5 years ago
  36. 76d5877 closes bpo-39922: Remove unused args from four functions. (GH-18893) by Andy Lester · 5 years ago
  37. 4e53abb bpo-38631: _PyGILState_Init() returns PyStatus (GH-18908) by Victor Stinner · 5 years ago
  38. 13d52c2 bpo-34822: Simplify AST for subscription. (GH-9605) by Serhiy Storchaka · 5 years ago
  39. 8510f43 bpo-1294959: Add sys.platlibdir attribute (GH-18381) by Victor Stinner · 5 years ago
  40. b4698ec bpo-39877: Deprecate PyEval_InitThreads() (GH-18892) by Victor Stinner · 5 years ago
  41. 175a704 bpo-39877: PyGILState_Ensure() don't call PyEval_InitThreads() (GH-18891) by Victor Stinner · 5 years ago
  42. 9ad58ac bpo-19466: Py_Finalize() clears daemon threads earlier (GH-18848) by Victor Stinner · 5 years ago
  43. 9229eee bpo-39877: take_gil() checks tstate_must_exit() twice (GH-18890) by Victor Stinner · 5 years ago
  44. b7e9525 bpo-36287: Make ast.dump() not output optional fields and attributes with default values. (GH-18843) by Serhiy Storchaka · 5 years ago
  45. 85f5a69 bpo-39877: Refactor take_gil() function (GH-18885) by Victor Stinner · 5 years ago
  46. 111e4ee bpo-39877: Py_Initialize() pass tstate to PyEval_InitThreads() (GH-18884) by Victor Stinner · 5 years ago
  47. 3225b9f bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883) by Victor Stinner · 5 years ago
  48. eebaa9b bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release mode. (GH-16329) by Serhiy Storchaka · 5 years ago
  49. fc72ab6 bpo-38691: importlib ignores PYTHONCASEOK if -E is used (GH-18627) by idomic · 5 years ago
  50. 28ca43b closes bpo-39898: Remove unused arg from append_formattedvalue. (GH-18840) by Andy Lester · 5 years ago
  51. eb4e2ae bpo-39877: Fix PyEval_RestoreThread() for daemon threads (GH-18811) by Victor Stinner · 5 years ago
  52. d5aa2e9 bpo-39890: Don't mutate the AST when compiling starred assignments (GH-18833) by Brandt Bucher · 5 years ago
  53. aa450a0 closes bpo-39886: Remove unused arg from config_get_stdio_errors. (GH-18823) by Andy Lester · 5 years ago
  54. ad0c775 closes bpo-39878: Remove unused arguments from static functions. (GH-18822) by Andy Lester · 5 years ago
  55. 9e5d30c bpo-39882: Py_FatalError() logs the function name (GH-18819) by Victor Stinner · 5 years ago
  56. 7b3c252 bpo-39877: _PyRuntimeState.finalizing becomes atomic (GH-18816) by Victor Stinner · 5 years ago
  57. 5572870 bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809) by Andy Lester · 5 years ago
  58. 9566842 closes bpo-39872: Remove unused args from symtable_exit_block and symtable_visit_annotations. (GH-18800) by Andy Lester · 5 years ago
  59. da4d656 closes bpo-39870: Remove unused arg from sys_displayhook_unencodable. (GH-18796) by Andy Lester · 5 years ago
  60. efc28bb Add a comment to _Py_RestoreSignals() (GH-18792) by Victor Stinner · 5 years ago
  61. d82e469 bpo-39639: Remove the AST "Suite" node and associated code (GH-18513) by Batuhan Taşkaya · 5 years ago
  62. dffe4c0 bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) by Andy Lester · 5 years ago
  63. be501ca bpo-39702: Relax grammar restrictions on decorators (PEP 614) (GH-18570) by Brandt Bucher · 5 years ago
  64. ae75a29 bpo-39831: Remove outdated comment. (GH-18764) by Serhiy Storchaka · 5 years ago
  65. 6daa37f bpo-38091: Import deadlock detection causes deadlock (GH-17518) by Armin Rigo · 5 years ago
  66. b3b9ade bpo-39776: Lock ++interp->tstate_next_unique_id. (GH-18746) (#18746) by Stefan Krah · 5 years ago
  67. 2d2f855 bpo-39831: Fix a reference leak in PyErr_WarnEx(). (GH-18750) by Serhiy Storchaka · 5 years ago
  68. 66b7973 bpo-39796: Fix _warnings module initialization (GH-18739) by Victor Stinner · 5 years ago
  69. 28d0bca bpo-38913: Fix segfault in Py_BuildValue("(s#O)", ...) if entered with exception raised. (GH-18656) by Serhiy Storchaka · 5 years ago
  70. 3fe9117 closes bpo-39803: Remove unused str from _PyLong_FormatAdvancedWriter. (GH-18709) by Andy Lester · 5 years ago
  71. 185903d bpo-39520: Fix un-parsing of ext slices with no dimensions (GH-18304) by Batuhan Taşkaya · 5 years ago
  72. baf29b2 Reuse identifier of PREDICT macros as PREDICT_ID (GH-17155) by Denis Chernikov · 5 years ago
  73. 4dee92b Revert "bpo-38691 Added a switch to ignore PYTHONCASEOK when -E or -I flags passed (#18314)" (GH-18553) by Victor Stinner · 5 years ago
  74. 1b55b65 bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521) by Dong-hee Na · 6 years ago
  75. d83b660 bpo-38691 Added a switch to ignore PYTHONCASEOK when -E or -I flags passed (#18314) by idomic · 6 years ago
  76. 7386a70 closes bpo-39630: Update pointers to string literals to be const char *. (GH-18510) by Andy Lester · 6 years ago
  77. e9e7d28 bpo-35081: Move dtoa.h header to the internal C API (GH-18489) by Victor Stinner · 6 years ago
  78. 6e619c4 bpo-39474: Fix AST pos for expressions like (a)(b), (a)[b] and (a).b. (GH-18477) by Serhiy Storchaka · 6 years ago
  79. 8c579b1 bpo-32856: Optimize the assignment idiom in comprehensions. (GH-16814) by Serhiy Storchaka · 6 years ago
  80. e6be9b5 closes bpo-39605: Fix some casts to not cast away const. (GH-18453) by Andy Lester · 6 years ago
  81. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 6 years ago
  82. d2e1098 bpo-39579: Fix Attribute end_col_offset to point at the current node (GH-18405) by Lysandros Nikolaou · 6 years ago
  83. 60ac6ed bpo-39573: Use Py_SET_SIZE() function (GH-18402) by Victor Stinner · 6 years ago
  84. de6f38d bpo-39502: Fix 64-bit Python PyTime_localtime() on AIX (GH-18285) by Michael Felt · 6 years ago
  85. a102ed7 bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391) by Victor Stinner · 6 years ago
  86. a93c51e bpo-39573: Use Py_REFCNT() macro (GH-18388) by Victor Stinner · 6 years ago
  87. d2f9667 bpo-38823: Fix refleaks in _ast initialization error path (GH-17276) by Brandt Bucher · 6 years ago
  88. 3d06953 bpo-39127: Make _Py_HashPointer's argument be const (GH-17690) by Andy Lester · 6 years ago
  89. 58f4e1a bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368) by Victor Stinner · 6 years ago
  90. b439a71 bpo-39553: Delete HAVE_SXS protected code (GH-18356) by Zackery Spytz · 6 years ago
  91. 4590f72 bpo-38076 Clear the interpreter state only after clearing module globals (GH-18039) by Eddie Elizondo · 6 years ago
  92. 4b52416 bpo-39542: Move object.h debug functions to internal C API (GH-18331) by Victor Stinner · 6 years ago
  93. c6e5c11 bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) by Victor Stinner · 6 years ago
  94. abb9a44 Update sum comment. (#18240) by Brandt Bucher · 6 years ago
  95. 4d96b46 bpo-39511: PyThreadState_Clear() calls on_delete (GH-18296) by Victor Stinner · 6 years ago
  96. 46874c2 bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) by Hai Shi · 6 years ago
  97. 17c68b8 bpo-38631: Replace Py_FatalError() with assert() in ceval.c (GH-18279) by Victor Stinner · 6 years ago
  98. aabdeb7 bpo-38960: DTrace build fix for FreeBSD. (GH-17451) by David Carlier · 6 years ago
  99. 61f4db8 bpo-38644: Pass tstate in ceval.c (GH-18222) by Victor Stinner · 6 years ago
  100. d3a1de2 bpo-38631: Avoid Py_FatalError() in _PyCodecRegistry_Init() (GH-18217) by Victor Stinner · 6 years ago