summaryrefslogtreecommitdiffstats
path: root/Python/import.c
Commit message (Expand)AuthorAgeFilesLines
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-98040: Remove just the `imp` module (#98573)Barry Warsaw2023-04-281-4/+4
* gh-100227: Add a Granular Lock for _PyRuntime.imports.extensions.dict (gh-103...Eric Snow2023-04-251-3/+10
* gh-100227: Only Use deepfreeze for the Main Interpreter (gh-103794)Eric Snow2023-04-241-4/+5
* gh-102660: Fix is_core_module() (gh-103257)Eric Snow2023-04-041-1/+13
* gh-100227: Fix Cleanup of the Extensions Cache (gh-103150)Eric Snow2023-03-311-1/+1
* gh-100227: Make the Global PyModuleDef Cache Safe for Isolated Interpreters (...Eric Snow2023-03-291-30/+145
* gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (#1...Irit Katriel2023-03-191-14/+14
* gh-102660: Fix Refleaks in import.c (#102744)Eric Snow2023-03-161-22/+28
* gh-102660: Handle m_copy Specially for the sys and builtins Modules (gh-102661)Eric Snow2023-03-141-4/+31
* gh-100227: Isolate the Import State to Each Interpreter (gh-101941)Eric Snow2023-03-091-44/+54
* gh-102251: Updates to test_imp Toward Fixing Some Refleaks (gh-102254)Eric Snow2023-02-271-4/+111
* gh-101758: Add _PyState_AddModule() Back for the Stable ABI (gh-101956)Eric Snow2023-02-161-0/+20
* gh-98627: Add an Optional Check for Extension Module Subinterpreter Compatibi...Eric Snow2023-02-161-9/+79
* gh-101758: Add a Test For Single-Phase Init Modules in Multiple Interpreters ...Eric Snow2023-02-151-2/+74
* gh-101758: Clean Up Uses of Import State (gh-101919)Eric Snow2023-02-151-702/+1288
* gh-101758: Add a Test For Single-Phase Init Module Variants (gh-101891)Eric Snow2023-02-141-10/+95
* gh-101670: typo fix in PyImport_ExtendInittab() (#101723)Sergey B Kirpichev2023-02-091-1/+1
* gh-101670: typo fix in PyImport_AppendInittab() (GH-101672)Sergey B Kirpichev2023-02-081-1/+1
* GH-101578: Normalize the current exception (GH-101607)Mark Shannon2023-02-081-0/+7
* gh-99578: Fix refleak in _imp.create_builtin() (#99642)Victor Stinner2022-11-211-1/+2
* gh-99300: Replace Py_INCREF() with Py_NewRef() (#99530)Victor Stinner2022-11-161-2/+1
* gh-81057: Move the Remaining Import State Globals to _PyRuntimeState (gh-99488)Eric Snow2022-11-141-6/+9
* gh-81057: Move PyImport_Inittab to _PyRuntimeState (gh-99402)Eric Snow2022-11-121-4/+60
* gh-81057: Move the Extension Modules Cache to _PyRuntimeState (gh-99355)Eric Snow2022-11-111-28/+50
* gh-99300: Use Py_NewRef() in Python/ directory (#99317)Victor Stinner2022-11-101-16/+8
* gh-98354: Add unicode check for 'name' attribute in _imp_create_builtin (GH-9...chgnrdv2022-10-201-0/+8
* gh-65961: Raise `DeprecationWarning` when `__package__` differs from `__spec_...Brett Cannon2022-10-051-1/+1
* gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742)Serhiy Storchaka2022-06-141-22/+43
* bpo-47162: Add call trampoline to mitigate bad fpcasts on Emscripten (GH-32189)Christian Heimes2022-03-301-3/+9
* bpo-45459: C API uses type names rather than structure names (GH-31528)Victor Stinner2022-02-241-1/+1
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-62/+28
* bpo-46670: Remove unused macros in the Python directory (GH-31192)Victor Stinner2022-02-071-2/+0
* bpo-46608: exclude marshalled-frozen data if deep-freezing to save 300 KB spa...Kumar Aditya2022-02-041-4/+12
* bpo-45020: Fix strict-prototypes warning (GH-29755)Christian Heimes2021-11-241-1/+1
* bpo-45696: Deep-freeze selected modules (GH-29118)Guido van Rossum2021-11-111-0/+7
* bpo-45379: clarify FROZEN_EXCLUDED and FROZEN_INVALID documentation (GH-29189)Filipe Laíns2021-10-291-2/+7
* bpo-45395: Make custom frozen modules additions instead of replacements. (gh-...Eric Snow2021-10-281-46/+113
* bpo-45379: add custom error string for FROZEN_DISABLED (GH-29190)Filipe Laíns2021-10-281-1/+3
* bpo-45482: Rename namespaceobject.h to pycore_namespace.h (GH-28975)Victor Stinner2021-10-151-10/+10
* bpo-21736: Set __file__ on frozen stdlib modules. (gh-28656)Eric Snow2021-10-141-15/+32
* bpo-45434: Mark the PyTokenizer C API as private (GH-28924)Victor Stinner2021-10-131-1/+0
* Fix typos in the Python directory (GH-28767)Christian Clauss2021-10-061-1/+1
* bpo-45020: Identify which frozen modules are actually aliases. (gh-28655)Eric Snow2021-10-051-11/+70
* bpo-45324: Capture data in FrozenImporter.find_spec() to use in exec_module()...Eric Snow2021-10-051-80/+188
* bpo-44050: Extension modules can share state when they don't support sub-inte...Hai Shi2021-10-051-1/+3
* bpo-45020: Add -X frozen_modules=[on|off] to explicitly control use of frozen...Eric Snow2021-09-141-9/+81
* bpo-45019: Do some cleanup related to frozen modules. (gh-28319)Eric Snow2021-09-131-0/+41
* bpo-44441: _PyImport_Fini2() resets PyImport_Inittab (GH-26874)Victor Stinner2021-06-231-0/+3
* bpo-43244: Remove Yield macro from pycore_ast.h (GH-25243)Victor Stinner2021-04-071-1/+0