1. 87f649a bpo-43311: Create GIL autoTSSkey ealier (GH-24819) by Victor Stinner · 4 years, 5 months ago
  2. 02ac6f4 bpo-43390: Set SA_ONSTACK in PyOS_setsig (GH-24730) by Gregory P. Smith · 4 years, 5 months ago
  3. bcb094b bpo-43268: Pass interp rather than tstate to internal functions (GH-24580) by Victor Stinner · 4 years, 6 months ago
  4. 101bf69 bpo-43268: _Py_IsMainInterpreter() now expects interp (GH-24577) by Victor Stinner · 4 years, 6 months ago
  5. 9852cb3 bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332) by Victor Stinner · 4 years, 6 months ago
  6. db584bd bpo-42955: Add sys.modules_names (GH-24238) by Victor Stinner · 4 years, 6 months ago
  7. 66f77ca bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254) by Victor Stinner · 4 years, 7 months ago
  8. 250035d bpo-42923: Dump extension modules on fatal error (GH-24207) by Victor Stinner · 4 years, 7 months ago
  9. 314b878 bpo-42923: Py_FatalError() avoids fprintf() (GH-24242) by Victor Stinner · 4 years, 7 months ago
  10. f450723 bpo-42745: finalize_interp_types() calls _PyType_Fini() (GH-23953) by Victor Stinner · 4 years, 7 months ago
  11. ea25180 bpo-40521: Per-interpreter interned strings (GH-20085) by Victor Stinner · 4 years, 7 months ago
  12. 4101018 bpo-42745: Make the type cache per-interpreter (GH-23947) by Victor Stinner · 4 years, 7 months ago
  13. b8fa135 bpo-42639: Move atexit state to PyInterpreterState (GH-23763) by Victor Stinner · 4 years, 8 months ago
  14. 357704c bpo-42639: atexit now logs callbacks exceptions (GH-23771) by Victor Stinner · 4 years, 8 months ago
  15. 83d5204 bpo-42639: Cleanup atexitmodule.c (GH-23770) by Victor Stinner · 4 years, 8 months ago
  16. a82f63f bpo-32381: Add _PyRun_AnyFileObject() (GH-23723) by Victor Stinner · 4 years, 8 months ago
  17. 0f91f58 bpo-42599: Remove useless PyModule_GetWarningsModule() (GH-23691) by Hai Shi · 4 years, 8 months ago
  18. 6223071 bpo-1635741: Convert _imp to multi-phase init (GH-23378) by Victor Stinner · 4 years, 9 months ago
  19. 07f2ade bpo-40998: Address compiler warnings found by ubsan (GH-20929) by Christian Heimes · 4 years, 9 months ago
  20. 29aa624 bpo-41686: Move _Py_RestoreSignals() to signalmodule.c (GH-23353) by Victor Stinner · 4 years, 9 months ago
  21. 296a796 bpo-41713: Remove PyOS_InitInterrupts() function (GH-23342) by Victor Stinner · 4 years, 9 months ago
  22. ae6cd7c bpo-37205: time.time() cannot fail with fatal error (GH-23314) by Victor Stinner · 4 years, 9 months ago
  23. ef75a62 bpo-42260: Initialize time and warnings earlier at startup (GH-23249) by Victor Stinner · 4 years, 9 months ago
  24. ace3f9a bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220) by Victor Stinner · 4 years, 9 months ago
  25. 9e1b828 bpo-42260: Compute the path config in the main init (GH-23211) by Victor Stinner · 4 years, 9 months ago
  26. 048a356 bpo-42260: Add _PyInterpreterState_SetConfig() (GH-23158) by Victor Stinner · 4 years, 9 months ago
  27. af1d64d bpo-42260: Main init modify sys.flags in-place (GH-23150) by Victor Stinner · 4 years, 9 months ago
  28. fd957c1 bpo-41796: Call _PyAST_Fini() earlier to fix a leak (GH-23131) by Victor Stinner · 4 years, 9 months ago
  29. eba5bf2 bpo-42208: Call GC collect earlier in PyInterpreterState_Clear() (GH-23044) by Victor Stinner · 4 years, 9 months ago
  30. dff1ad5 bpo-42208: Move _PyImport_Cleanup() to pylifecycle.c (GH-23040) by Victor Stinner · 4 years, 9 months ago
  31. 8b34148 bpo-42208: Pass tstate to _PyGC_CollectNoFail() (GH-23038) by Victor Stinner · 4 years, 9 months ago
  32. fb5db7e bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetItemId. (GH-22648) by Serhiy Storchaka · 4 years, 9 months ago
  33. e5fbe0c bpo-41631: _ast module uses again a global state (#21961) by Victor Stinner · 4 years, 11 months ago
  34. 8aa163e bpo-1635741: Explict GC collect after PyInterpreterState_Clear() (GH-21902) by Hai Shi · 5 years ago
  35. daa0fe0 bpo-41162: Clear audit hooks later during finalization (GH-21222) by Konge · 5 years ago
  36. 666ecfb bpo-1635741: Release Unicode interned strings at exit (GH-21269) by Victor Stinner · 5 years ago
  37. 90db465 bpo-40521: Cleanup finalize_interp_types() (GH-21265) by Victor Stinner · 5 years ago
  38. 91698d8 bpo-40521: Optimize PyBytes_FromStringAndSize(str, 0) (GH-21142) by Victor Stinner · 5 years ago
  39. 0430dfa bpo-40521: Always create the empty tuple singleton (GH-21116) by Victor Stinner · 5 years ago
  40. f363d0a bpo-40521: Make empty Unicode string per interpreter (GH-21096) by Victor Stinner · 5 years ago
  41. 281cce1 bpo-40521: Make MemoryError free list per interpreter (GH-21086) by Victor Stinner · 5 years ago
  42. f9bd05e bpo-40521: Empty frozenset is no longer a singleton (GH-21085) by Raymond Hettinger · 5 years ago
  43. 30a8933 Call _PyWarnings_InitState() in subinterpreters (GH-21078) by Victor Stinner · 5 years ago
  44. c41eed1 bpo-40521: Make bytes singletons per interpreter (GH-21074) by Victor Stinner · 5 years ago
  45. 261cfed bpo-40521: Make the empty frozenset per interpreter (GH-21068) by Victor Stinner · 5 years ago
  46. b4e85ca bpo-40521: Make dict free lists per-interpreter (GH-20645) by Victor Stinner · 5 years ago
  47. 1bf7959 bpo-41006: Remove init_sys_streams() hack (GH-20954) by Victor Stinner · 5 years ago
  48. 1ed83ad bpo-40939: Remove the old parser (GH-20768) by Pablo Galindo · 5 years ago
  49. e81f6e6 bpo-40910: Export Py_GetArgcArgv() function (GH-20721) by Victor Stinner · 5 years ago
  50. 7907f8c bpo-40887: Fix finalize_interp_clear() for free lists (GH-20698) by Victor Stinner · 5 years ago
  51. e005ead bpo-40521: Make context free list per-interpreter (GH-20644) by Victor Stinner · 5 years ago
  52. 78a02c2 bpo-40521: Make async gen free lists per-interpreter (GH-20643) by Victor Stinner · 5 years ago
  53. 88ec919 bpo-40521: Make list free list per-interpreter (GH-20642) by Victor Stinner · 5 years ago
  54. 3744ed2 bpo-40521: Make frame free list per-interpreter (GH-20638) by Victor Stinner · 5 years ago
  55. 7daba6f bpo-40521: Make slice cache per-interpreter (GH-20637) by Victor Stinner · 5 years ago
  56. 2ba5937 bpo-40521: Make float free list per-interpreter (GH-20636) by Victor Stinner · 5 years ago
  57. 69ac6e5 bpo-40521: Make tuple free list per-interpreter (GH-20247) by Victor Stinner · 5 years ago
  58. 7be4e35 bpo-40513: Per-interpreter GIL (GH-19943) by Victor Stinner · 5 years ago
  59. 0dd5e7a bpo-40513: new_interpreter() init GIL earlier (GH-19942) by Victor Stinner · 5 years ago
  60. 252346a bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820) by Victor Stinner · 5 years ago
  61. 4f98f46 bpo-40268: Remove unused imports in pylifecycle.c (GH-19533) by Victor Stinner · 5 years ago
  62. 361dcdc bpo-40268: Remove unused osdefs.h includes (GH-19532) by Victor Stinner · 5 years ago
  63. d9ea5ca bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) by Victor Stinner · 5 years ago
  64. 62183b8 bpo-40268: Remove explicit pythread.h includes (#19529) by Victor Stinner · 5 years ago
  65. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 5 years ago
  66. 81a7be3 bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) by Victor Stinner · 5 years ago
  67. 1c4cbdf bpo-40268: Add pycore_runtime.h header file (GH-19493) by Victor Stinner · 5 years ago
  68. da7933e bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) by Victor Stinner · 5 years ago
  69. dda5d6e bpo-40226: PyInterpreterState_Delete() deletes pending calls (GH-19436) by Victor Stinner · 5 years ago
  70. 400e1db Document most common signals (GH-19245) by Victor Stinner · 5 years ago
  71. 08faf00 bpo-38644: Add _PySys_Audit() which takes tstate (GH-19180) by Victor Stinner · 5 years ago
  72. 87d3b9d bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) by Victor Stinner · 5 years ago
  73. 50e6e99 bpo-39984: Move pending calls to PyInterpreterState (GH-19066) by Victor Stinner · 5 years ago
  74. 56bfdeb bpo-39984: Pass tstate to _PyEval_SignalAsyncExc() (GH-19049) by Victor Stinner · 5 years ago
  75. 75cd5bf Remove unused args from two pylifecycle.c functions (GH-18867) by Andy Lester · 5 years ago
  76. 4e53abb bpo-38631: _PyGILState_Init() returns PyStatus (GH-18908) by Victor Stinner · 5 years ago
  77. 9ad58ac bpo-19466: Py_Finalize() clears daemon threads earlier (GH-18848) by Victor Stinner · 5 years ago
  78. 111e4ee bpo-39877: Py_Initialize() pass tstate to PyEval_InitThreads() (GH-18884) by Victor Stinner · 5 years ago
  79. eb4e2ae bpo-39877: Fix PyEval_RestoreThread() for daemon threads (GH-18811) by Victor Stinner · 5 years ago
  80. 9e5d30c bpo-39882: Py_FatalError() logs the function name (GH-18819) by Victor Stinner · 5 years ago
  81. 7b3c252 bpo-39877: _PyRuntimeState.finalizing becomes atomic (GH-18816) by Victor Stinner · 5 years ago
  82. efc28bb Add a comment to _Py_RestoreSignals() (GH-18792) by Victor Stinner · 5 years ago
  83. 66b7973 bpo-39796: Fix _warnings module initialization (GH-18739) by Victor Stinner · 5 years ago
  84. 4b52416 bpo-39542: Move object.h debug functions to internal C API (GH-18331) by Victor Stinner · 6 years ago
  85. c6e5c11 bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) by Victor Stinner · 6 years ago
  86. 2b1df45 bpo-38644: Pass tstate to _Py_FinishPendingCalls() (GH-17990) by Victor Stinner · 6 years ago
  87. 2c7ed41 closes bpo-39261: Remove dead assignment from pyinit_config. (GH-17907) by Alex Henrie · 6 years ago
  88. 5b90771 bpo-13601: always use line-buffering for sys.stderr (GH-17646) by Jendrik Seipp · 6 years ago
  89. 630c8df bpo-38858: Small integer per interpreter (GH-17315) by Victor Stinner · 6 years ago
  90. 080ee5a bpo-38858: Fix ref leak in pycore_interp_init() (GH-17512) by Victor Stinner · 6 years ago
  91. d863ade bpo-38858: Add pycore_interp_init() code to factorize code (GH-17483) by Victor Stinner · 6 years ago
  92. 81fe5bd bpo-38858: new_interpreter() reuses _PySys_Create() (GH-17481) by Victor Stinner · 6 years ago
  93. 4da4400 Remove unused variable in Python/pylifecycle.c (GH-17475) by Pablo Galindo · 6 years ago
  94. ac0e1c2 bpo-38962: Fix reference leak in the per-subinterpreter gc (GH-17457) by Pablo Galindo · 6 years ago
  95. b96c6b0 bpo-38962: Fix reference leak in new_interpreter() (GH-17453) by Pablo Galindo · 6 years ago
  96. 2ec1a1b bpo-38858: new_interpreter() uses pycore_init_import_warnings() (GH-17353) by Victor Stinner · 6 years ago
  97. 2582d46 bpo-38858: new_interpreter() reuses pycore_init_builtins() (GH-17351) by Victor Stinner · 6 years ago
  98. b005136 bpo-38858: Add init_interp_main() subfunction (GH-17347) by Victor Stinner · 6 years ago
  99. e0c9ab8 bpo-38858: Add init_set_builtins_open() subfunction (GH-17346) by Victor Stinner · 6 years ago
  100. 3d48334 bpo-38858: Call _PyUnicode_Fini() in Py_EndInterpreter() (GH-17330) by Victor Stinner · 6 years ago