1. 410b85a bpo-36900: import.c uses PyInterpreterState.core_config (GH-13278) by Victor Stinner · 5 years ago
  2. 94a64e9 bpo-24048: Save the live exception during import.c's remove_module() (GH-13005) by Zackery Spytz · 5 years ago
  3. cb9fbd3 bpo-36763: Make _PyCoreConfig.check_hash_pycs_mode public (GH-13052) by Victor Stinner · 5 years ago
  4. 9db0324 bpo-36710: Add runtime parameter in gcmodule.c (GH-12958) by Victor Stinner · 5 years ago
  5. 027b09c bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504) by Stefan Krah · 5 years ago
  6. 0d765e3 bpo-36362: Avoid unused variables when HAVE_DYNAMIC_LOADING is not defined (GH-12430) by Stéphane Wirtel · 5 years ago
  7. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 5 years ago
  8. 89c4f90 bpo-35470: Fix a reference counting bug in _PyImport_FindExtensionObjectEx(). (GH-11128) by Zackery Spytz · 6 years ago
  9. 8905fcc bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) by Serhiy Storchaka · 6 years ago
  10. 3bb183d bpo-35177, Python-ast.h: Fix "Yield" compiler warning (GH-10664) by Victor Stinner · 6 years ago
  11. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  12. 5f2df88 bpo-35177: Add dependencies between header files (GH-10361) by Victor Stinner · 6 years ago
  13. 34fd4c2 bpo-35133: Fix mistakes when concatenate string literals on different lines. (GH-10284) by Serhiy Storchaka · 6 years ago
  14. a1c249c bpo-35081: And pycore_lifecycle.h and pycore_pathconfig.h (GH-10273) by Victor Stinner · 6 years ago
  15. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  16. 2be00d9 bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249) by Victor Stinner · 6 years ago
  17. 3e429dc bpo-33237: Improve AttributeError message for partially initialized module. (GH-6398) by Serhiy Storchaka · 6 years ago
  18. c93c58b bpo-33331: Clean modules in the reversed order in PyImport_Cleanup(). (GH-6565) by Serhiy Storchaka · 6 years ago
  19. e502451 closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) by Benjamin Peterson · 6 years ago
  20. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 6 years ago
  21. 80b762f bpo-31650: Remove _Py_CheckHashBasedPycsMode global config var (GH-8608) by Victor Stinner · 6 years ago
  22. 6c785c0 bpo-34170: Add Python/coreconfig.c for _PyCoreConfig (GH-8607) by Victor Stinner · 6 years ago
  23. 5e6312c bpo-33443 Fix typo in Python/import.c (GH-6722) by ukwksk · 6 years ago
  24. c1a6832 bpo-33330: Write exceptions occurred in PyImport_Cleanup() to stderr. (GH-6606) by Serhiy Storchaka · 6 years ago
  25. e9d9494 bpo-33330: Improve error handling in PyImport_Cleanup(). (GH-6564) by Serhiy Storchaka · 6 years ago
  26. 4e24425 bpo-32946: Speed up "from ... import ..." from non-packages. (GH-5873) by Serhiy Storchaka · 6 years ago
  27. c65ef77 rename _imp initialization function to follow conventions (#5432) by Benjamin Peterson · 7 years ago
  28. 0c644fc fix up signedness in PyImport_ExtendInittab (#4831) by Benjamin Peterson · 7 years ago
  29. d233796 import.c: Fix a GCC warning (#4822) by Victor Stinner · 7 years ago
  30. 8362077 fix my byte-swapping implementation (#4772) by Benjamin Peterson · 7 years ago
  31. 42aa93b closes bpo-31650: PEP 552 (Deterministic pycs) implementation (#4575) by Benjamin Peterson · 7 years ago
  32. 11cc289 Fix missing DECREF of mod. (#4749) by Neil Schemenauer · 7 years ago
  33. 92a3c6f bpo-32030: Add _PyImport_Fini2() (#4737) by Victor Stinner · 7 years ago
  34. 672b6ba bpo-32030: pass interp to _PyImport_Init() (#4736) by Victor Stinner · 7 years ago
  35. eea3cc1 Refactor PyImport_ImportModuleLevelObject(). (#4680) by Neil Schemenauer · 7 years ago
  36. 25420fe bpo-32030: Add more options to _PyCoreConfig (#4485) by Victor Stinner · 7 years ago
  37. a7368ac bpo-32030: Enhance Py_Main() (#4412) by Victor Stinner · 7 years ago
  38. f7e5b56 bpo-32030: Split Py_Main() into subfunctions (#4399) by Victor Stinner · 7 years ago
  39. 088929c bpo-31415: Improve error handling and caching of the importtime option. (#4138) by Serhiy Storchaka · 7 years ago
  40. 700d2e4 bpo-31415: Support PYTHONPROFILEIMPORTTIME envvar equivalent to -X importtime (#4240) by Barry Warsaw · 7 years ago
  41. bdaeb7d bpo-31773: _PyTime_GetPerfCounter() uses _PyTime_t (GH-3983) by Victor Stinner · 7 years ago
  42. cba9a0c bpo-31773: time.perf_counter() uses again double (GH-3964) by Victor Stinner · 7 years ago
  43. a997c7b bpo-31415: Add _PyTime_GetPerfCounter() and use it for -X importtime (#3936) by Victor Stinner · 7 years ago
  44. 1a87de7 bpo-31415: Add `-X importtime` option (GH-3490) by INADA Naoki · 7 years ago
  45. 3d2b407 bpo-31574: importlib dtrace (#3749) by Christian Heimes · 7 years ago
  46. 3f9eee6 bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593) by Eric Snow · 7 years ago
  47. d393c1b bpo-28411: Isolate PyInterpreterState.modules (#3575) by Eric Snow · 7 years ago
  48. 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 7 years ago
  49. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  50. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  51. 86b7afd bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638) by Eric Snow · 7 years ago
  52. 8a9cd20 bpo-30876: Relative import from unloaded package now reimports the package (#2639) by Serhiy Storchaka · 7 years ago
  53. 4f9a446 bpo-30891: Fix importlib _find_and_load() race condition (#2646) by Victor Stinner · 7 years ago
  54. b4baace bpo-30814: Fixed a race condition when import a submodule from a package. (#2580) by Serhiy Storchaka · 7 years ago
  55. 145541c bpo-30626: Fix error handling in PyImport_Import(). (#2103) by Serhiy Storchaka · 7 years ago
  56. f7ecfac Doc nits for bpo-16500 (#1841) by Antoine Pitrou · 7 years ago
  57. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 7 years ago
  58. 370fd20 Use Py_RETURN_FALSE/Py_RETURN_TRUE rather than PyBool_FromLong(0)/PyBool_FromLong(1). (#567) by Serhiy Storchaka · 7 years ago
  59. 685c203 Removed redundant Argument Clinic directives. by Serhiy Storchaka · 8 years ago
  60. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  61. 55ba38a Use _PyObject_CallMethodIdObjArgs() by Victor Stinner · 8 years ago
  62. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  63. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  64. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 8 years ago
  65. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  66. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  67. a78b627 Fix potential NULL pointer dereference in _imp_create_builtin by Christian Heimes · 8 years ago
  68. 32d3742 [backport to 3.5] - issue26896 - Disambiguate uses of "importer" with "finder". by Senthil Kumaran · 8 years ago
  69. f0afe77 Issue #27909: Fix INCREF for possible NULL value by Raymond Hettinger · 8 years ago
  70. 52794db Issue #27911: Remove some unnecessary error checks in import.c. by Brett Cannon · 8 years ago
  71. 46f97b8 Issue #15767: Use ModuleNotFoundError. by Eric Snow · 8 years ago
  72. 74942c9 Merge by Raymond Hettinger · 8 years ago
  73. 133138a Issue #22557: Now importing already imported modules is up to 2.5 times faster. by Serhiy Storchaka · 8 years ago
  74. caaf53e Issue #27419: Added temporary workaround for subinterpreters. by Serhiy Storchaka · 8 years ago
  75. 80ab069 Issue #27419: Added temporary workaround for subinterpreters. by Serhiy Storchaka · 8 years ago
  76. 7905f99 Issue #27419: Standard __import__() no longer look up "__import__" in globals by Serhiy Storchaka · 8 years ago
  77. b3b65e6 Issue #27419: Standard __import__() no longer look up "__import__" in globals by Serhiy Storchaka · 8 years ago
  78. fdcdd9e Issue #26896: Disambiguate uses of "importer" with "finder". by Brett Cannon · 8 years ago
  79. 2954f83 - Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  80. 1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions by Serhiy Storchaka · 8 years ago
  81. 744c34e Cleanup import.c by Victor Stinner · 8 years ago
  82. 23c5cbb fs_unicode_converter is no longer used. by Serhiy Storchaka · 8 years ago
  83. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  84. 5b613dd Issue #25698: Prevent possible replacing imported module with the empty one by Serhiy Storchaka · 8 years ago
  85. 48a583b Issue #25698: Prevent possible replacing imported module with the empty one by Serhiy Storchaka · 8 years ago
  86. 9fa8126 Issue #18018: Raise an ImportError if a relative import is attempted by Brett Cannon · 9 years ago
  87. 849113a Issue #25791: Warn when __package__ != __spec__.parent. by Brett Cannon · 9 years ago
  88. 63b8505 Issue #25791: Raise an ImportWarning when __spec__ or __package__ are by Brett Cannon · 9 years ago
  89. 576f132 Issue #20440: Cleaning up the code by using Py_SETREF. by Serhiy Storchaka · 9 years ago
  90. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
  91. 01b1ff6 Rebuilt Clinic generated code. by Larry Hastings · 9 years ago
  92. 1df0b35 Issue #24769: Interpreter now starts properly when dynamic loading by Larry Hastings · 9 years ago
  93. ac5569b Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  94. fa494fd Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  95. d5cacbb PEP 489: Multi-phase extension module initialization by Nick Coghlan · 9 years ago
  96. 32439d6 Issue #23911: Move path-based bootstrap code to a separate frozen module. by Eric Snow · 9 years ago
  97. 1a084a8 Issue #23998: PyImport_ReInitLock() now checks for lock allocation error by Christian Heimes · 9 years ago
  98. e0ac2be Issue #23998: PyImport_ReInitLock() now checks for lock allocation error by Christian Heimes · 9 years ago
  99. 418fd74 Issue #23998: PyImport_ReInitLock() now checks for lock allocation error by Christian Heimes · 9 years ago
  100. 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 9 years ago