1. 45b34a0 bpo-40232: _PyImport_ReInitLock() can now safely use its lock (GH-20597) by Victor Stinner · 4 years, 2 months ago
  2. 26881c8 PyOS_AfterFork_Child() uses PyStatus (GH-20596) by Victor Stinner · 4 years, 2 months ago
  3. f40bd46 bpo-40417: Fix deprecation warning in PyImport_ReloadModule (GH-19750) by Robert Rouhani · 4 years, 3 months ago
  4. 64224a4 bpo-40412: Nullify inittab_copy during finalization (GH-19746) by Gregory Szorc · 4 years, 3 months ago
  5. 8852ad4 bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773) by Victor Stinner · 4 years, 3 months ago
  6. a42ca74 bpo-40421: Add PyFrame_GetCode() function (GH-19757) by Victor Stinner · 4 years, 3 months ago
  7. 361dcdc bpo-40268: Remove unused osdefs.h includes (GH-19532) by Victor Stinner · 4 years, 4 months ago
  8. d9ea5ca bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) by Victor Stinner · 4 years, 4 months ago
  9. 62183b8 bpo-40268: Remove explicit pythread.h includes (#19529) by Victor Stinner · 4 years, 4 months ago
  10. 62f75fe bpo-40232: Update PyOS_AfterFork_Child() to use _PyThread_at_fork_reinit() (GH-19450) by Dong-hee Na · 4 years, 4 months ago
  11. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 4 years, 4 months ago
  12. 81a7be3 bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) by Victor Stinner · 4 years, 4 months ago
  13. 4a3fe08 bpo-40268: Include explicitly pycore_interp.h (GH-19505) by Victor Stinner · 4 years, 4 months ago
  14. da7933e bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) by Victor Stinner · 4 years, 4 months ago
  15. fc2d8d6 bpo-39943: Remove unnecessary casts in import.c that remove constness (GH-19209) by Andy Lester · 4 years, 4 months ago
  16. 1c1e68c bpo-38644: Use _PySys_Audit(): pass tstate explicitly (GH-19183) by Victor Stinner · 4 years, 4 months ago
  17. 87d3b9d bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) by Victor Stinner · 4 years, 4 months ago
  18. ff4584c bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978) by Victor Stinner · 4 years, 5 months ago
  19. 9e5d30c bpo-39882: Py_FatalError() logs the function name (GH-18819) by Victor Stinner · 4 years, 5 months ago
  20. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 6 months ago
  21. 4590f72 bpo-38076 Clear the interpreter state only after clearing module globals (GH-18039) by Eddie Elizondo · 4 years, 6 months ago
  22. 46874c2 bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) by Hai Shi · 4 years, 6 months ago
  23. aabdeb7 bpo-38960: DTrace build fix for FreeBSD. (GH-17451) by David Carlier · 4 years, 6 months ago
  24. 2582d46 bpo-38858: new_interpreter() reuses pycore_init_builtins() (GH-17351) by Victor Stinner · 4 years, 8 months ago
  25. 82c83bd bpo-38858: _PyImport_FixupExtensionObject() handles subinterpreters (GH-17350) by Victor Stinner · 4 years, 8 months ago
  26. 67e0de6 bpo-36854: gcmodule.c gets its state from tstate (GH-17285) by Victor Stinner · 4 years, 8 months ago
  27. 61691d8 bpo-38353: Cleanup includes in the internal C API (GH-16548) by Victor Stinner · 4 years, 10 months ago
  28. 37c2220 bpo-35943: Prevent PyImport_GetModule() from returning a partially-initialized module (GH-15057) by Joannah Nanjekye · 4 years, 11 months ago
  29. 92420b3 bpo-37409: fix relative import with no parent (#14956) by Ben Lewis · 4 years, 11 months ago
  30. c5fa449 bpo-37444: Update differing exception between builtins and importlib (GH-14869) by Ngalim Siregar · 5 years ago
  31. c4cacc8 Fix typos in comments, docs and test names (#15018) by Min ho Kim · 5 years ago
  32. 59ad110 bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) by Jeroen Demeyer · 5 years ago
  33. 762f93f bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267) by Jeroen Demeyer · 5 years ago
  34. 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 5 years ago
  35. b45d259 bpo-36710: Use tstate in pylifecycle.c (GH-14249) by Victor Stinner · 5 years ago
  36. 987a0dc bpo-36710: Remove PyImport_Cleanup() function (GH-14221) by Victor Stinner · 5 years ago
  37. 0a28f8d bpo-36710: Add tstate parameter in import.c (GH-14218) by Victor Stinner · 5 years ago
  38. 0fd2c30 Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795) by Victor Stinner · 5 years ago
  39. 396e0a8 bpo-36818: Add PyInterpreterState.runtime field. (gh-13129) by Eric Snow · 5 years ago
  40. 249b7d5 bpo-20602: Do not clear sys.flags and sys.float_info during shutdown (GH-8096) by Zackery Spytz · 5 years ago
  41. 331a6a5 bpo-36763: Implement the PEP 587 (GH-13592) by Victor Stinner · 5 years ago
  42. b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 5 years ago
  43. 410b85a bpo-36900: import.c uses PyInterpreterState.core_config (GH-13278) by Victor Stinner · 5 years ago
  44. 94a64e9 bpo-24048: Save the live exception during import.c's remove_module() (GH-13005) by Zackery Spytz · 5 years ago
  45. cb9fbd3 bpo-36763: Make _PyCoreConfig.check_hash_pycs_mode public (GH-13052) by Victor Stinner · 5 years ago
  46. 9db0324 bpo-36710: Add runtime parameter in gcmodule.c (GH-12958) by Victor Stinner · 5 years ago
  47. 027b09c bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504) by Stefan Krah · 5 years ago
  48. 0d765e3 bpo-36362: Avoid unused variables when HAVE_DYNAMIC_LOADING is not defined (GH-12430) by Stéphane Wirtel · 5 years ago
  49. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 5 years ago
  50. 89c4f90 bpo-35470: Fix a reference counting bug in _PyImport_FindExtensionObjectEx(). (GH-11128) by Zackery Spytz · 6 years ago
  51. 8905fcc bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) by Serhiy Storchaka · 6 years ago
  52. 3bb183d bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664) by Victor Stinner · 6 years ago
  53. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  54. 5f2df88 bpo-35177: Add dependencies between header files (GH-10361) by Victor Stinner · 6 years ago
  55. 34fd4c2 bpo-35133: Fix mistakes when concatenate string literals on different lines. (GH-10284) by Serhiy Storchaka · 6 years ago
  56. a1c249c bpo-35081: And pycore_lifecycle.h and pycore_pathconfig.h (GH-10273) by Victor Stinner · 6 years ago
  57. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  58. 2be00d9 bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249) by Victor Stinner · 6 years ago
  59. 3e429dc bpo-33237: Improve AttributeError message for partially initialized module. (GH-6398) by Serhiy Storchaka · 6 years ago
  60. c93c58b bpo-33331: Clean modules in the reversed order in PyImport_Cleanup(). (GH-6565) by Serhiy Storchaka · 6 years ago
  61. e502451 closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) by Benjamin Peterson · 6 years ago
  62. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 6 years ago
  63. 80b762f bpo-31650: Remove _Py_CheckHashBasedPycsMode global config var (GH-8608) by Victor Stinner · 6 years ago
  64. 6c785c0 bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607) by Victor Stinner · 6 years ago
  65. 5e6312c bpo-33443 Fix typo in Python/import.c (GH-6722) by ukwksk · 6 years ago
  66. c1a6832 bpo-33330: Write exceptions occurred in PyImport_Cleanup() to stderr. (GH-6606) by Serhiy Storchaka · 6 years ago
  67. e9d9494 bpo-33330: Improve error handling in PyImport_Cleanup(). (GH-6564) by Serhiy Storchaka · 6 years ago
  68. 4e24425 bpo-32946: Speed up "from ... import ..." from non-packages. (GH-5873) by Serhiy Storchaka · 6 years ago
  69. c65ef77 rename _imp initialization function to follow conventions (#5432) by Benjamin Peterson · 7 years ago
  70. 0c644fc fix up signedness in PyImport_ExtendInittab (#4831) by Benjamin Peterson · 7 years ago
  71. d233796 import.c: Fix a GCC warning (#4822) by Victor Stinner · 7 years ago
  72. 8362077 fix my byte-swapping implementation (#4772) by Benjamin Peterson · 7 years ago
  73. 42aa93b closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575) by Benjamin Peterson · 7 years ago
  74. 11cc289 Fix missing DECREF of mod. (#4749) by Neil Schemenauer · 7 years ago
  75. 92a3c6f bpo-32030: Add _PyImport_Fini2() (#4737) by Victor Stinner · 7 years ago
  76. 672b6ba bpo-32030: pass interp to _PyImport_Init() (#4736) by Victor Stinner · 7 years ago
  77. eea3cc1 Refactor PyImport_ImportModuleLevelObject(). (#4680) by Neil Schemenauer · 7 years ago
  78. 25420fe bpo-32030: Add more options to _PyCoreConfig (#4485) by Victor Stinner · 7 years ago
  79. a7368ac bpo-32030: Enhance Py_Main() (#4412) by Victor Stinner · 7 years ago
  80. f7e5b56 bpo-32030: Split Py_Main() into subfunctions (#4399) by Victor Stinner · 7 years ago
  81. 088929c bpo-31415: Improve error handling and caching of the importtime option. (#4138) by Serhiy Storchaka · 7 years ago
  82. 700d2e4 bpo-31415: Support PYTHONPROFILEIMPORTTIME envvar equivalent to -X importtime (#4240) by Barry Warsaw · 7 years ago
  83. bdaeb7d bpo-31773: _PyTime_GetPerfCounter() uses _PyTime_t (GH-3983) by Victor Stinner · 7 years ago
  84. cba9a0c bpo-31773: time.perf_counter() uses again double (GH-3964) by Victor Stinner · 7 years ago
  85. a997c7b bpo-31415: Add _PyTime_GetPerfCounter() and use it for -X importtime (#3936) by Victor Stinner · 7 years ago
  86. 1a87de7 bpo-31415: Add `-X importtime` option (GH-3490) by INADA Naoki · 7 years ago
  87. 3d2b407 bpo-31574: importlib dtrace (#3749) by Christian Heimes · 7 years ago
  88. 3f9eee6 bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593) by Eric Snow · 7 years ago
  89. d393c1b bpo-28411: Isolate PyInterpreterState.modules (#3575) by Eric Snow · 7 years ago
  90. 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 7 years ago
  91. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  92. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  93. 86b7afd bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638) by Eric Snow · 7 years ago
  94. 8a9cd20 bpo-30876: Relative import from unloaded package now reimports the package (#2639) by Serhiy Storchaka · 7 years ago
  95. 4f9a446 bpo-30891: Fix importlib _find_and_load() race condition (#2646) by Victor Stinner · 7 years ago
  96. b4baace bpo-30814: Fixed a race condition when import a submodule from a package. (#2580) by Serhiy Storchaka · 7 years ago
  97. 145541c bpo-30626: Fix error handling in PyImport_Import(). (#2103) by Serhiy Storchaka · 7 years ago
  98. f7ecfac Doc nits for bpo-16500 (#1841) by Antoine Pitrou · 7 years ago
  99. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 7 years ago
  100. 370fd20 Use Py_RETURN_FALSE/Py_RETURN_TRUE rather than PyBool_FromLong(0)/PyBool_FromLong(1). (#567) by Serhiy Storchaka · 7 years ago