We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18f3ffe commit 8552a8eCopy full SHA for 8552a8e
2 files changed
Include/internal/pycore_interp_structs.h
@@ -308,8 +308,6 @@ struct _import_runtime_state {
308
Modules are added there and looked up in _imp.find_extension(). */
309
struct _Py_hashtable_t *hashtable;
310
} extensions;
311
- /* Package context -- the full module name for package imports */
312
- const char * pkgcontext;
313
};
314
315
struct _import_state {
Python/import.c
@@ -81,8 +81,6 @@ static struct _inittab *inittab_copy = NULL;
81
#define LAST_MODULE_INDEX _PyRuntime.imports.last_module_index
82
#define EXTENSIONS _PyRuntime.imports.extensions
83
84
-#define PKGCONTEXT (_PyRuntime.imports.pkgcontext)
85
-
86
87
/*******************************/
88
/* interpreter import state */
0 commit comments