Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-41994: Fix refcount issues in Python/import.c (GH-22632) | Serhiy Storchaka | 2021-01-12 | 1 | -2/+0 |
| | | | https://bugs.python.org/issue41994 | ||||
* | bpo-39583: Remove superfluous "extern C" bits from Include/cpython/*.h ↵ | Skip Montanaro | 2020-06-01 | 1 | -8/+0 |
| | | | | (GH-18413) | ||||
* | bpo-36710: Add tstate parameter in import.c (GH-14218) | Victor Stinner | 2019-06-19 | 1 | -8/+1 |
| | | | | | | | | | | | | | * Add 'tstate' parameter to many internal import.c functions. * _PyImportZip_Init() now gets 'tstate' parameter rather than 'interp'. * Add 'interp' parameter to _PyState_ClearModules() and rename it to _PyInterpreterState_ClearModules(). * Move private _PyImport_FindBuiltin() to the internal C API; add 'tstate' parameter to it. * Remove private _PyImport_AddModuleObject() from the C API: use public PyImport_AddModuleObject() instead. * Remove private _PyImport_FindExtensionObjectEx() from the C API: use private _PyImport_FindExtensionObject() instead. | ||||
* | bpo-35134: Add Include/cpython/import.h header file (GH-14213) | Victor Stinner | 2019-06-18 | 1 | -0/+57 |
* Add Include/cpython/import.h and Include/internal/pycore_import.h header files. * Move _PyImport_ReInitLock() to the internal C API. Don't export the symbol anymore. |