mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638)
sys.modules is the one true source.
This commit is contained in:
parent
f5ea83f486
commit
86b7afdfee
18 changed files with 261 additions and 111 deletions
|
@ -204,6 +204,13 @@ Importing Modules
|
||||||
Return the dictionary used for the module administration (a.k.a.
|
Return the dictionary used for the module administration (a.k.a.
|
||||||
``sys.modules``). Note that this is a per-interpreter variable.
|
``sys.modules``). Note that this is a per-interpreter variable.
|
||||||
|
|
||||||
|
.. c:function:: PyObject* PyImport_GetModule(PyObject *name)
|
||||||
|
|
||||||
|
Return the already imported module with the given name. If the
|
||||||
|
module has not been imported yet then returns NULL but does not set
|
||||||
|
an error. Returns NULL and sets an error if the lookup failed.
|
||||||
|
|
||||||
|
.. versionadded:: 3.7
|
||||||
|
|
||||||
.. c:function:: PyObject* PyImport_GetImporter(PyObject *path)
|
.. c:function:: PyObject* PyImport_GetImporter(PyObject *path)
|
||||||
|
|
||||||
|
|
|
@ -456,6 +456,9 @@ Changes in the Python API
|
||||||
and module are affected by this change. (Contributed by INADA Naoki and
|
and module are affected by this change. (Contributed by INADA Naoki and
|
||||||
Eugene Toder in :issue:`29463`.)
|
Eugene Toder in :issue:`29463`.)
|
||||||
|
|
||||||
|
* ``PyInterpreterState`` no longer has a ``modules`` field. Instead use
|
||||||
|
``sys.modules``.
|
||||||
|
|
||||||
* The *mode* argument of :func:`os.makedirs` no longer affects the file
|
* The *mode* argument of :func:`os.makedirs` no longer affects the file
|
||||||
permission bits of newly-created intermediate-level directories.
|
permission bits of newly-created intermediate-level directories.
|
||||||
To set their file permission bits you can set the umask before invoking
|
To set their file permission bits you can set the umask before invoking
|
||||||
|
|
|
@ -38,11 +38,25 @@ PyAPI_FUNC(PyObject *) PyImport_ExecCodeModuleObject(
|
||||||
);
|
);
|
||||||
#endif
|
#endif
|
||||||
PyAPI_FUNC(PyObject *) PyImport_GetModuleDict(void);
|
PyAPI_FUNC(PyObject *) PyImport_GetModuleDict(void);
|
||||||
|
#ifndef Py_LIMITED_API
|
||||||
|
PyAPI_FUNC(int) _PyImport_IsInitialized(PyInterpreterState *);
|
||||||
|
#endif
|
||||||
|
PyAPI_FUNC(PyObject *) PyImport_GetModule(PyObject *name);
|
||||||
|
#ifndef Py_LIMITED_API
|
||||||
|
PyAPI_FUNC(PyObject *) _PyImport_GetModule(PyObject *name);
|
||||||
|
PyAPI_FUNC(PyObject *) _PyImport_GetModuleWithError(PyObject *name);
|
||||||
|
PyAPI_FUNC(PyObject *) _PyImport_GetModuleId(struct _Py_Identifier *name);
|
||||||
|
PyAPI_FUNC(int) _PyImport_SetModule(PyObject *name, PyObject *module);
|
||||||
|
PyAPI_FUNC(int) _PyImport_SetModuleString(const char *name, PyObject* module);
|
||||||
|
#endif
|
||||||
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
|
||||||
PyAPI_FUNC(PyObject *) PyImport_AddModuleObject(
|
PyAPI_FUNC(PyObject *) PyImport_AddModuleObject(
|
||||||
PyObject *name
|
PyObject *name
|
||||||
);
|
);
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef Py_LIMITED_API
|
||||||
|
PyAPI_FUNC(PyObject *) _PyImport_AddModuleObject(PyObject *, PyObject *);
|
||||||
|
#endif
|
||||||
PyAPI_FUNC(PyObject *) PyImport_AddModule(
|
PyAPI_FUNC(PyObject *) PyImport_AddModule(
|
||||||
const char *name /* UTF-8 encoded string */
|
const char *name /* UTF-8 encoded string */
|
||||||
);
|
);
|
||||||
|
@ -97,14 +111,19 @@ PyAPI_FUNC(int) _PyImport_ReleaseLock(void);
|
||||||
PyAPI_FUNC(void) _PyImport_ReInitLock(void);
|
PyAPI_FUNC(void) _PyImport_ReInitLock(void);
|
||||||
|
|
||||||
PyAPI_FUNC(PyObject *) _PyImport_FindBuiltin(
|
PyAPI_FUNC(PyObject *) _PyImport_FindBuiltin(
|
||||||
const char *name /* UTF-8 encoded string */
|
const char *name, /* UTF-8 encoded string */
|
||||||
|
PyObject *modules
|
||||||
);
|
);
|
||||||
PyAPI_FUNC(PyObject *) _PyImport_FindExtensionObject(PyObject *, PyObject *);
|
PyAPI_FUNC(PyObject *) _PyImport_FindExtensionObject(PyObject *, PyObject *);
|
||||||
|
PyAPI_FUNC(PyObject *) _PyImport_FindExtensionObjectEx(PyObject *, PyObject *,
|
||||||
|
PyObject *);
|
||||||
PyAPI_FUNC(int) _PyImport_FixupBuiltin(
|
PyAPI_FUNC(int) _PyImport_FixupBuiltin(
|
||||||
PyObject *mod,
|
PyObject *mod,
|
||||||
const char *name /* UTF-8 encoded string */
|
const char *name, /* UTF-8 encoded string */
|
||||||
|
PyObject *modules
|
||||||
);
|
);
|
||||||
PyAPI_FUNC(int) _PyImport_FixupExtensionObject(PyObject*, PyObject *, PyObject *);
|
PyAPI_FUNC(int) _PyImport_FixupExtensionObject(PyObject*, PyObject *,
|
||||||
|
PyObject *, PyObject *);
|
||||||
|
|
||||||
struct _inittab {
|
struct _inittab {
|
||||||
const char *name; /* ASCII encoded string */
|
const char *name; /* ASCII encoded string */
|
||||||
|
|
|
@ -191,6 +191,10 @@ PyAPI_FUNC(int) PyModule_ExecDef(PyObject *module, PyModuleDef *def);
|
||||||
|
|
||||||
PyAPI_FUNC(PyObject *) PyModule_Create2(struct PyModuleDef*,
|
PyAPI_FUNC(PyObject *) PyModule_Create2(struct PyModuleDef*,
|
||||||
int apiver);
|
int apiver);
|
||||||
|
#ifndef Py_LIMITED_API
|
||||||
|
PyAPI_FUNC(PyObject *) _PyModule_CreateInitialized(struct PyModuleDef*,
|
||||||
|
int apiver);
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef Py_LIMITED_API
|
#ifdef Py_LIMITED_API
|
||||||
#define PyModule_Create(module) \
|
#define PyModule_Create(module) \
|
||||||
|
|
|
@ -52,7 +52,6 @@ typedef struct _is {
|
||||||
|
|
||||||
int64_t id;
|
int64_t id;
|
||||||
|
|
||||||
PyObject *modules;
|
|
||||||
PyObject *modules_by_index;
|
PyObject *modules_by_index;
|
||||||
PyObject *sysdict;
|
PyObject *sysdict;
|
||||||
PyObject *builtins;
|
PyObject *builtins;
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
``PyInterpreterState`` has a "modules" field that is copied into
|
||||||
|
``sys.modules`` during interpreter startup. This causes problems if a
|
||||||
|
program replaces ``sys.modules`` with something else. To solve this we
|
||||||
|
eliminate ``PyInterpreterState.modules``.
|
|
@ -6418,9 +6418,7 @@ _pickle_Unpickler_find_class_impl(UnpicklerObject *self,
|
||||||
/*[clinic end generated code: output=becc08d7f9ed41e3 input=e2e6a865de093ef4]*/
|
/*[clinic end generated code: output=becc08d7f9ed41e3 input=e2e6a865de093ef4]*/
|
||||||
{
|
{
|
||||||
PyObject *global;
|
PyObject *global;
|
||||||
PyObject *modules_dict;
|
|
||||||
PyObject *module;
|
PyObject *module;
|
||||||
_Py_IDENTIFIER(modules);
|
|
||||||
|
|
||||||
/* Try to map the old names used in Python 2.x to the new ones used in
|
/* Try to map the old names used in Python 2.x to the new ones used in
|
||||||
Python 3.x. We do this only with old pickle protocols and when the
|
Python 3.x. We do this only with old pickle protocols and when the
|
||||||
|
@ -6477,13 +6475,7 @@ _pickle_Unpickler_find_class_impl(UnpicklerObject *self,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
modules_dict = _PySys_GetObjectId(&PyId_modules);
|
module = PyImport_GetModule(module_name);
|
||||||
if (modules_dict == NULL) {
|
|
||||||
PyErr_SetString(PyExc_RuntimeError, "unable to get sys.modules");
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
module = PyDict_GetItemWithError(modules_dict, module_name);
|
|
||||||
if (module == NULL) {
|
if (module == NULL) {
|
||||||
if (PyErr_Occurred())
|
if (PyErr_Occurred())
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -6491,11 +6483,11 @@ _pickle_Unpickler_find_class_impl(UnpicklerObject *self,
|
||||||
if (module == NULL)
|
if (module == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
global = getattribute(module, global_name, self->proto >= 4);
|
global = getattribute(module, global_name, self->proto >= 4);
|
||||||
Py_DECREF(module);
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
global = getattribute(module, global_name, self->proto >= 4);
|
global = getattribute(module, global_name, self->proto >= 4);
|
||||||
}
|
}
|
||||||
|
Py_DECREF(module);
|
||||||
return global;
|
return global;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1643,7 +1643,6 @@ MODULE_INITFUNC(void)
|
||||||
PyObject *errors_module;
|
PyObject *errors_module;
|
||||||
PyObject *modelmod_name;
|
PyObject *modelmod_name;
|
||||||
PyObject *model_module;
|
PyObject *model_module;
|
||||||
PyObject *sys_modules;
|
|
||||||
PyObject *tmpnum, *tmpstr;
|
PyObject *tmpnum, *tmpstr;
|
||||||
PyObject *codes_dict;
|
PyObject *codes_dict;
|
||||||
PyObject *rev_codes_dict;
|
PyObject *rev_codes_dict;
|
||||||
|
@ -1693,11 +1692,6 @@ MODULE_INITFUNC(void)
|
||||||
*/
|
*/
|
||||||
PyModule_AddStringConstant(m, "native_encoding", "UTF-8");
|
PyModule_AddStringConstant(m, "native_encoding", "UTF-8");
|
||||||
|
|
||||||
sys_modules = PySys_GetObject("modules");
|
|
||||||
if (sys_modules == NULL) {
|
|
||||||
Py_DECREF(m);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
d = PyModule_GetDict(m);
|
d = PyModule_GetDict(m);
|
||||||
if (d == NULL) {
|
if (d == NULL) {
|
||||||
Py_DECREF(m);
|
Py_DECREF(m);
|
||||||
|
@ -1707,7 +1701,7 @@ MODULE_INITFUNC(void)
|
||||||
if (errors_module == NULL) {
|
if (errors_module == NULL) {
|
||||||
errors_module = PyModule_New(MODULE_NAME ".errors");
|
errors_module = PyModule_New(MODULE_NAME ".errors");
|
||||||
if (errors_module != NULL) {
|
if (errors_module != NULL) {
|
||||||
PyDict_SetItem(sys_modules, errmod_name, errors_module);
|
_PyImport_SetModule(errmod_name, errors_module);
|
||||||
/* gives away the reference to errors_module */
|
/* gives away the reference to errors_module */
|
||||||
PyModule_AddObject(m, "errors", errors_module);
|
PyModule_AddObject(m, "errors", errors_module);
|
||||||
}
|
}
|
||||||
|
@ -1717,7 +1711,7 @@ MODULE_INITFUNC(void)
|
||||||
if (model_module == NULL) {
|
if (model_module == NULL) {
|
||||||
model_module = PyModule_New(MODULE_NAME ".model");
|
model_module = PyModule_New(MODULE_NAME ".model");
|
||||||
if (model_module != NULL) {
|
if (model_module != NULL) {
|
||||||
PyDict_SetItem(sys_modules, modelmod_name, model_module);
|
_PyImport_SetModule(modelmod_name, model_module);
|
||||||
/* gives away the reference to model_module */
|
/* gives away the reference to model_module */
|
||||||
PyModule_AddObject(m, "model", model_module);
|
PyModule_AddObject(m, "model", model_module);
|
||||||
}
|
}
|
||||||
|
|
|
@ -160,12 +160,18 @@ _add_methods_to_object(PyObject *module, PyObject *name, PyMethodDef *functions)
|
||||||
|
|
||||||
PyObject *
|
PyObject *
|
||||||
PyModule_Create2(struct PyModuleDef* module, int module_api_version)
|
PyModule_Create2(struct PyModuleDef* module, int module_api_version)
|
||||||
|
{
|
||||||
|
if (!_PyImport_IsInitialized(PyThreadState_GET()->interp))
|
||||||
|
Py_FatalError("Python import machinery not initialized");
|
||||||
|
return _PyModule_CreateInitialized(module, module_api_version);
|
||||||
|
}
|
||||||
|
|
||||||
|
PyObject *
|
||||||
|
_PyModule_CreateInitialized(struct PyModuleDef* module, int module_api_version)
|
||||||
{
|
{
|
||||||
const char* name;
|
const char* name;
|
||||||
PyModuleObject *m;
|
PyModuleObject *m;
|
||||||
PyInterpreterState *interp = PyThreadState_Get()->interp;
|
|
||||||
if (interp->modules == NULL)
|
|
||||||
Py_FatalError("Python import machinery not initialized");
|
|
||||||
if (!PyModuleDef_Init(module))
|
if (!PyModuleDef_Init(module))
|
||||||
return NULL;
|
return NULL;
|
||||||
name = module->m_name;
|
name = module->m_name;
|
||||||
|
|
|
@ -3901,7 +3901,6 @@ import_copyreg(void)
|
||||||
{
|
{
|
||||||
PyObject *copyreg_str;
|
PyObject *copyreg_str;
|
||||||
PyObject *copyreg_module;
|
PyObject *copyreg_module;
|
||||||
PyInterpreterState *interp = PyThreadState_GET()->interp;
|
|
||||||
_Py_IDENTIFIER(copyreg);
|
_Py_IDENTIFIER(copyreg);
|
||||||
|
|
||||||
copyreg_str = _PyUnicode_FromId(&PyId_copyreg);
|
copyreg_str = _PyUnicode_FromId(&PyId_copyreg);
|
||||||
|
@ -3913,7 +3912,7 @@ import_copyreg(void)
|
||||||
by storing a reference to the cached module in a static variable, but
|
by storing a reference to the cached module in a static variable, but
|
||||||
this broke when multiple embedded interpreters were in use (see issue
|
this broke when multiple embedded interpreters were in use (see issue
|
||||||
#17408 and #19088). */
|
#17408 and #19088). */
|
||||||
copyreg_module = PyDict_GetItemWithError(interp->modules, copyreg_str);
|
copyreg_module = _PyImport_GetModuleWithError(copyreg_str);
|
||||||
if (copyreg_module != NULL) {
|
if (copyreg_module != NULL) {
|
||||||
Py_INCREF(copyreg_module);
|
Py_INCREF(copyreg_module);
|
||||||
return copyreg_module;
|
return copyreg_module;
|
||||||
|
|
|
@ -44,7 +44,6 @@ static PyObject *
|
||||||
get_warnings_attr(const char *attr, int try_import)
|
get_warnings_attr(const char *attr, int try_import)
|
||||||
{
|
{
|
||||||
static PyObject *warnings_str = NULL;
|
static PyObject *warnings_str = NULL;
|
||||||
PyObject *all_modules;
|
|
||||||
PyObject *warnings_module, *obj;
|
PyObject *warnings_module, *obj;
|
||||||
|
|
||||||
if (warnings_str == NULL) {
|
if (warnings_str == NULL) {
|
||||||
|
@ -64,9 +63,7 @@ get_warnings_attr(const char *attr, int try_import)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
all_modules = PyImport_GetModuleDict();
|
warnings_module = _PyImport_GetModule(warnings_str);
|
||||||
|
|
||||||
warnings_module = PyDict_GetItem(all_modules, warnings_str);
|
|
||||||
if (warnings_module == NULL)
|
if (warnings_module == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
|
|
@ -2685,7 +2685,7 @@ _PyBuiltin_Init(void)
|
||||||
PyType_Ready(&PyZip_Type) < 0)
|
PyType_Ready(&PyZip_Type) < 0)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
mod = PyModule_Create(&builtinsmodule);
|
mod = _PyModule_CreateInitialized(&builtinsmodule, PYTHON_API_VERSION);
|
||||||
if (mod == NULL)
|
if (mod == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
dict = PyModule_GetDict(mod);
|
dict = PyModule_GetDict(mod);
|
||||||
|
|
|
@ -5054,7 +5054,7 @@ import_from(PyObject *v, PyObject *name)
|
||||||
Py_DECREF(pkgname);
|
Py_DECREF(pkgname);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
x = PyDict_GetItem(PyImport_GetModuleDict(), fullmodname);
|
x = _PyImport_GetModule(fullmodname);
|
||||||
Py_DECREF(fullmodname);
|
Py_DECREF(fullmodname);
|
||||||
if (x == NULL) {
|
if (x == NULL) {
|
||||||
goto error;
|
goto error;
|
||||||
|
|
205
Python/import.c
205
Python/import.c
|
@ -303,10 +303,115 @@ _PyImport_Fini(void)
|
||||||
PyObject *
|
PyObject *
|
||||||
PyImport_GetModuleDict(void)
|
PyImport_GetModuleDict(void)
|
||||||
{
|
{
|
||||||
PyInterpreterState *interp = PyThreadState_GET()->interp;
|
PyObject *sysdict = PyThreadState_GET()->interp->sysdict;
|
||||||
if (interp->modules == NULL)
|
if (sysdict == NULL) {
|
||||||
Py_FatalError("PyImport_GetModuleDict: no module dictionary!");
|
Py_FatalError("PyImport_GetModuleDict: no sys module!");
|
||||||
return interp->modules;
|
}
|
||||||
|
|
||||||
|
_Py_IDENTIFIER(modules);
|
||||||
|
PyObject *modules = _PyDict_GetItemId(sysdict, &PyId_modules);
|
||||||
|
if (modules == NULL) {
|
||||||
|
Py_FatalError("lost sys.modules");
|
||||||
|
}
|
||||||
|
return modules;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* In some corner cases it is important to be sure that the import
|
||||||
|
machinery has been initialized (or not cleaned up yet). For
|
||||||
|
example, see issue #4236 and PyModule_Create2(). */
|
||||||
|
|
||||||
|
int
|
||||||
|
_PyImport_IsInitialized(PyInterpreterState *interp)
|
||||||
|
{
|
||||||
|
if (interp->sysdict == NULL)
|
||||||
|
return 0;
|
||||||
|
_Py_IDENTIFIER(modules);
|
||||||
|
PyObject *modules = _PyDict_GetItemId(interp->sysdict, &PyId_modules);
|
||||||
|
if (modules == NULL)
|
||||||
|
return 0;
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
PyObject *
|
||||||
|
_PyImport_GetModule(PyObject *name)
|
||||||
|
{
|
||||||
|
PyObject *modules = PyImport_GetModuleDict();
|
||||||
|
if (PyDict_CheckExact(modules)) {
|
||||||
|
return PyDict_GetItem(modules, name);
|
||||||
|
}
|
||||||
|
|
||||||
|
PyObject *mod = PyObject_GetItem(modules, name);
|
||||||
|
// For backward-comaptibility we copy the behavior of PyDict_GetItem().
|
||||||
|
if (PyErr_Occurred()) {
|
||||||
|
PyErr_Clear();
|
||||||
|
}
|
||||||
|
Py_XDECREF(mod);
|
||||||
|
return mod;
|
||||||
|
}
|
||||||
|
|
||||||
|
PyObject *
|
||||||
|
_PyImport_GetModuleWithError(PyObject *name)
|
||||||
|
{
|
||||||
|
PyObject *modules = PyImport_GetModuleDict();
|
||||||
|
if (PyDict_CheckExact(modules)) {
|
||||||
|
return PyDict_GetItemWithError(modules, name);
|
||||||
|
}
|
||||||
|
|
||||||
|
PyObject *mod = PyObject_GetItem(modules, name);
|
||||||
|
// For backward-comaptibility we copy the behavior
|
||||||
|
// of PyDict_GetItemWithError().
|
||||||
|
if (PyErr_ExceptionMatches(PyExc_KeyError)) {
|
||||||
|
PyErr_Clear();
|
||||||
|
}
|
||||||
|
return mod;
|
||||||
|
}
|
||||||
|
|
||||||
|
PyObject *
|
||||||
|
_PyImport_GetModuleId(struct _Py_Identifier *nameid)
|
||||||
|
{
|
||||||
|
PyObject *name = _PyUnicode_FromId(nameid); /* borrowed */
|
||||||
|
if (name == NULL) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
return _PyImport_GetModule(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
_PyImport_SetModule(PyObject *name, PyObject *m)
|
||||||
|
{
|
||||||
|
PyObject *modules = PyImport_GetModuleDict();
|
||||||
|
return PyObject_SetItem(modules, name, m);
|
||||||
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
_PyImport_SetModuleString(const char *name, PyObject *m)
|
||||||
|
{
|
||||||
|
PyObject *modules = PyImport_GetModuleDict();
|
||||||
|
return PyMapping_SetItemString(modules, name, m);
|
||||||
|
}
|
||||||
|
|
||||||
|
PyObject *
|
||||||
|
PyImport_GetModule(PyObject *name)
|
||||||
|
{
|
||||||
|
PyObject *m;
|
||||||
|
PyObject *modules = PyImport_GetModuleDict();
|
||||||
|
if (modules == NULL) {
|
||||||
|
PyErr_SetString(PyExc_RuntimeError, "unable to get sys.modules");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
Py_INCREF(modules);
|
||||||
|
if (PyDict_CheckExact(modules)) {
|
||||||
|
m = PyDict_GetItemWithError(modules, name); /* borrowed */
|
||||||
|
Py_XINCREF(m);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
m = PyObject_GetItem(modules, name);
|
||||||
|
if (PyErr_ExceptionMatches(PyExc_KeyError)) {
|
||||||
|
PyErr_Clear();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Py_DECREF(modules);
|
||||||
|
return m;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -336,7 +441,7 @@ PyImport_Cleanup(void)
|
||||||
Py_ssize_t pos;
|
Py_ssize_t pos;
|
||||||
PyObject *key, *value, *dict;
|
PyObject *key, *value, *dict;
|
||||||
PyInterpreterState *interp = PyThreadState_GET()->interp;
|
PyInterpreterState *interp = PyThreadState_GET()->interp;
|
||||||
PyObject *modules = interp->modules;
|
PyObject *modules = PyImport_GetModuleDict();
|
||||||
PyObject *weaklist = NULL;
|
PyObject *weaklist = NULL;
|
||||||
const char * const *p;
|
const char * const *p;
|
||||||
|
|
||||||
|
@ -398,7 +503,7 @@ PyImport_Cleanup(void)
|
||||||
if (Py_VerboseFlag && PyUnicode_Check(key))
|
if (Py_VerboseFlag && PyUnicode_Check(key))
|
||||||
PySys_FormatStderr("# cleanup[2] removing %U\n", key);
|
PySys_FormatStderr("# cleanup[2] removing %U\n", key);
|
||||||
STORE_MODULE_WEAKREF(key, value);
|
STORE_MODULE_WEAKREF(key, value);
|
||||||
PyDict_SetItem(modules, key, Py_None);
|
PyObject_SetItem(modules, key, Py_None);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -465,7 +570,6 @@ PyImport_Cleanup(void)
|
||||||
/* Clear and delete the modules directory. Actual modules will
|
/* Clear and delete the modules directory. Actual modules will
|
||||||
still be there only if imported during the execution of some
|
still be there only if imported during the execution of some
|
||||||
destructor. */
|
destructor. */
|
||||||
interp->modules = NULL;
|
|
||||||
Py_DECREF(modules);
|
Py_DECREF(modules);
|
||||||
|
|
||||||
/* Once more */
|
/* Once more */
|
||||||
|
@ -524,9 +628,9 @@ PyImport_GetMagicTag(void)
|
||||||
|
|
||||||
int
|
int
|
||||||
_PyImport_FixupExtensionObject(PyObject *mod, PyObject *name,
|
_PyImport_FixupExtensionObject(PyObject *mod, PyObject *name,
|
||||||
PyObject *filename)
|
PyObject *filename, PyObject *modules)
|
||||||
{
|
{
|
||||||
PyObject *modules, *dict, *key;
|
PyObject *dict, *key;
|
||||||
struct PyModuleDef *def;
|
struct PyModuleDef *def;
|
||||||
int res;
|
int res;
|
||||||
if (extensions == NULL) {
|
if (extensions == NULL) {
|
||||||
|
@ -543,11 +647,10 @@ _PyImport_FixupExtensionObject(PyObject *mod, PyObject *name,
|
||||||
PyErr_BadInternalCall();
|
PyErr_BadInternalCall();
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
modules = PyImport_GetModuleDict();
|
if (PyObject_SetItem(modules, name, mod) < 0)
|
||||||
if (PyDict_SetItem(modules, name, mod) < 0)
|
|
||||||
return -1;
|
return -1;
|
||||||
if (_PyState_AddModule(mod, def) < 0) {
|
if (_PyState_AddModule(mod, def) < 0) {
|
||||||
PyDict_DelItem(modules, name);
|
PyMapping_DelItem(modules, name);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (def->m_size == -1) {
|
if (def->m_size == -1) {
|
||||||
|
@ -575,20 +678,28 @@ _PyImport_FixupExtensionObject(PyObject *mod, PyObject *name,
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
_PyImport_FixupBuiltin(PyObject *mod, const char *name)
|
_PyImport_FixupBuiltin(PyObject *mod, const char *name, PyObject *modules)
|
||||||
{
|
{
|
||||||
int res;
|
int res;
|
||||||
PyObject *nameobj;
|
PyObject *nameobj;
|
||||||
nameobj = PyUnicode_InternFromString(name);
|
nameobj = PyUnicode_InternFromString(name);
|
||||||
if (nameobj == NULL)
|
if (nameobj == NULL)
|
||||||
return -1;
|
return -1;
|
||||||
res = _PyImport_FixupExtensionObject(mod, nameobj, nameobj);
|
res = _PyImport_FixupExtensionObject(mod, nameobj, nameobj, modules);
|
||||||
Py_DECREF(nameobj);
|
Py_DECREF(nameobj);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
PyObject *
|
PyObject *
|
||||||
_PyImport_FindExtensionObject(PyObject *name, PyObject *filename)
|
_PyImport_FindExtensionObject(PyObject *name, PyObject *filename)
|
||||||
|
{
|
||||||
|
PyObject *modules = PyImport_GetModuleDict();
|
||||||
|
return _PyImport_FindExtensionObjectEx(name, filename, modules);
|
||||||
|
}
|
||||||
|
|
||||||
|
PyObject *
|
||||||
|
_PyImport_FindExtensionObjectEx(PyObject *name, PyObject *filename,
|
||||||
|
PyObject *modules)
|
||||||
{
|
{
|
||||||
PyObject *mod, *mdict, *key;
|
PyObject *mod, *mdict, *key;
|
||||||
PyModuleDef* def;
|
PyModuleDef* def;
|
||||||
|
@ -605,7 +716,7 @@ _PyImport_FindExtensionObject(PyObject *name, PyObject *filename)
|
||||||
/* Module does not support repeated initialization */
|
/* Module does not support repeated initialization */
|
||||||
if (def->m_base.m_copy == NULL)
|
if (def->m_base.m_copy == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
mod = PyImport_AddModuleObject(name);
|
mod = _PyImport_AddModuleObject(name, modules);
|
||||||
if (mod == NULL)
|
if (mod == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
mdict = PyModule_GetDict(mod);
|
mdict = PyModule_GetDict(mod);
|
||||||
|
@ -620,14 +731,14 @@ _PyImport_FindExtensionObject(PyObject *name, PyObject *filename)
|
||||||
mod = def->m_base.m_init();
|
mod = def->m_base.m_init();
|
||||||
if (mod == NULL)
|
if (mod == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
if (PyDict_SetItem(PyImport_GetModuleDict(), name, mod) == -1) {
|
if (PyObject_SetItem(modules, name, mod) == -1) {
|
||||||
Py_DECREF(mod);
|
Py_DECREF(mod);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
Py_DECREF(mod);
|
Py_DECREF(mod);
|
||||||
}
|
}
|
||||||
if (_PyState_AddModule(mod, def) < 0) {
|
if (_PyState_AddModule(mod, def) < 0) {
|
||||||
PyDict_DelItem(PyImport_GetModuleDict(), name);
|
PyMapping_DelItem(modules, name);
|
||||||
Py_DECREF(mod);
|
Py_DECREF(mod);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -639,13 +750,13 @@ _PyImport_FindExtensionObject(PyObject *name, PyObject *filename)
|
||||||
}
|
}
|
||||||
|
|
||||||
PyObject *
|
PyObject *
|
||||||
_PyImport_FindBuiltin(const char *name)
|
_PyImport_FindBuiltin(const char *name, PyObject *modules)
|
||||||
{
|
{
|
||||||
PyObject *res, *nameobj;
|
PyObject *res, *nameobj;
|
||||||
nameobj = PyUnicode_InternFromString(name);
|
nameobj = PyUnicode_InternFromString(name);
|
||||||
if (nameobj == NULL)
|
if (nameobj == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
res = _PyImport_FindExtensionObject(nameobj, nameobj);
|
res = _PyImport_FindExtensionObjectEx(nameobj, nameobj, modules);
|
||||||
Py_DECREF(nameobj);
|
Py_DECREF(nameobj);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
@ -660,19 +771,34 @@ PyObject *
|
||||||
PyImport_AddModuleObject(PyObject *name)
|
PyImport_AddModuleObject(PyObject *name)
|
||||||
{
|
{
|
||||||
PyObject *modules = PyImport_GetModuleDict();
|
PyObject *modules = PyImport_GetModuleDict();
|
||||||
PyObject *m;
|
return _PyImport_AddModuleObject(name, modules);
|
||||||
|
}
|
||||||
|
|
||||||
if ((m = PyDict_GetItemWithError(modules, name)) != NULL &&
|
PyObject *
|
||||||
PyModule_Check(m)) {
|
_PyImport_AddModuleObject(PyObject *name, PyObject *modules)
|
||||||
return m;
|
{
|
||||||
|
PyObject *m;
|
||||||
|
if (PyDict_CheckExact(modules)) {
|
||||||
|
m = PyDict_GetItemWithError(modules, name);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
m = PyObject_GetItem(modules, name);
|
||||||
|
// For backward-comaptibility we copy the behavior
|
||||||
|
// of PyDict_GetItemWithError().
|
||||||
|
if (PyErr_ExceptionMatches(PyExc_KeyError)) {
|
||||||
|
PyErr_Clear();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (PyErr_Occurred()) {
|
if (PyErr_Occurred()) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
if (m != NULL && PyModule_Check(m)) {
|
||||||
|
return m;
|
||||||
|
}
|
||||||
m = PyModule_NewObject(name);
|
m = PyModule_NewObject(name);
|
||||||
if (m == NULL)
|
if (m == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
if (PyDict_SetItem(modules, name, m) != 0) {
|
if (PyObject_SetItem(modules, name, m) != 0) {
|
||||||
Py_DECREF(m);
|
Py_DECREF(m);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -699,11 +825,13 @@ static void
|
||||||
remove_module(PyObject *name)
|
remove_module(PyObject *name)
|
||||||
{
|
{
|
||||||
PyObject *modules = PyImport_GetModuleDict();
|
PyObject *modules = PyImport_GetModuleDict();
|
||||||
if (PyDict_GetItem(modules, name) == NULL)
|
if (PyMapping_DelItem(modules, name) < 0) {
|
||||||
return;
|
if (!PyMapping_HasKey(modules, name)) {
|
||||||
if (PyDict_DelItem(modules, name) < 0)
|
return;
|
||||||
|
}
|
||||||
Py_FatalError("import: deleting existing key in"
|
Py_FatalError("import: deleting existing key in"
|
||||||
"sys.modules failed");
|
"sys.modules failed");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -812,7 +940,6 @@ module_dict_for_exec(PyObject *name)
|
||||||
static PyObject *
|
static PyObject *
|
||||||
exec_code_in_module(PyObject *name, PyObject *module_dict, PyObject *code_object)
|
exec_code_in_module(PyObject *name, PyObject *module_dict, PyObject *code_object)
|
||||||
{
|
{
|
||||||
PyObject *modules = PyImport_GetModuleDict();
|
|
||||||
PyObject *v, *m;
|
PyObject *v, *m;
|
||||||
|
|
||||||
v = PyEval_EvalCode(code_object, module_dict, module_dict);
|
v = PyEval_EvalCode(code_object, module_dict, module_dict);
|
||||||
|
@ -822,7 +949,8 @@ exec_code_in_module(PyObject *name, PyObject *module_dict, PyObject *code_object
|
||||||
}
|
}
|
||||||
Py_DECREF(v);
|
Py_DECREF(v);
|
||||||
|
|
||||||
if ((m = PyDict_GetItem(modules, name)) == NULL) {
|
m = _PyImport_GetModule(name);
|
||||||
|
if (m == NULL) {
|
||||||
PyErr_Format(PyExc_ImportError,
|
PyErr_Format(PyExc_ImportError,
|
||||||
"Loaded module %R not found in sys.modules",
|
"Loaded module %R not found in sys.modules",
|
||||||
name);
|
name);
|
||||||
|
@ -1055,6 +1183,7 @@ _imp_create_builtin(PyObject *module, PyObject *spec)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PyObject *modules = NULL;
|
||||||
for (p = PyImport_Inittab; p->name != NULL; p++) {
|
for (p = PyImport_Inittab; p->name != NULL; p++) {
|
||||||
PyModuleDef *def;
|
PyModuleDef *def;
|
||||||
if (_PyUnicode_EqualToASCIIString(name, p->name)) {
|
if (_PyUnicode_EqualToASCIIString(name, p->name)) {
|
||||||
|
@ -1080,7 +1209,11 @@ _imp_create_builtin(PyObject *module, PyObject *spec)
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
def->m_base.m_init = p->initfunc;
|
def->m_base.m_init = p->initfunc;
|
||||||
if (_PyImport_FixupExtensionObject(mod, name, name) < 0) {
|
if (modules == NULL) {
|
||||||
|
modules = PyImport_GetModuleDict();
|
||||||
|
}
|
||||||
|
if (_PyImport_FixupExtensionObject(mod, name, name,
|
||||||
|
modules) < 0) {
|
||||||
Py_DECREF(name);
|
Py_DECREF(name);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
@ -1524,7 +1657,7 @@ PyImport_ImportModuleLevelObject(PyObject *name, PyObject *globals,
|
||||||
Py_INCREF(abs_name);
|
Py_INCREF(abs_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
mod = PyDict_GetItem(interp->modules, abs_name);
|
mod = _PyImport_GetModule(abs_name);
|
||||||
if (mod != NULL && mod != Py_None) {
|
if (mod != NULL && mod != Py_None) {
|
||||||
_Py_IDENTIFIER(__spec__);
|
_Py_IDENTIFIER(__spec__);
|
||||||
_Py_IDENTIFIER(_initializing);
|
_Py_IDENTIFIER(_initializing);
|
||||||
|
@ -1611,7 +1744,7 @@ PyImport_ImportModuleLevelObject(PyObject *name, PyObject *globals,
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
final_mod = PyDict_GetItem(interp->modules, to_return);
|
final_mod = _PyImport_GetModule(to_return);
|
||||||
Py_DECREF(to_return);
|
Py_DECREF(to_return);
|
||||||
if (final_mod == NULL) {
|
if (final_mod == NULL) {
|
||||||
PyErr_Format(PyExc_KeyError,
|
PyErr_Format(PyExc_KeyError,
|
||||||
|
@ -1664,10 +1797,10 @@ PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject *locals
|
||||||
PyObject *
|
PyObject *
|
||||||
PyImport_ReloadModule(PyObject *m)
|
PyImport_ReloadModule(PyObject *m)
|
||||||
{
|
{
|
||||||
|
_Py_IDENTIFIER(imp);
|
||||||
_Py_IDENTIFIER(reload);
|
_Py_IDENTIFIER(reload);
|
||||||
PyObject *reloaded_module = NULL;
|
PyObject *reloaded_module = NULL;
|
||||||
PyObject *modules = PyImport_GetModuleDict();
|
PyObject *imp = _PyImport_GetModuleId(&PyId_imp);
|
||||||
PyObject *imp = PyDict_GetItemString(modules, "imp");
|
|
||||||
if (imp == NULL) {
|
if (imp == NULL) {
|
||||||
imp = PyImport_ImportModule("imp");
|
imp = PyImport_ImportModule("imp");
|
||||||
if (imp == NULL) {
|
if (imp == NULL) {
|
||||||
|
@ -1702,7 +1835,6 @@ PyImport_Import(PyObject *module_name)
|
||||||
PyObject *globals = NULL;
|
PyObject *globals = NULL;
|
||||||
PyObject *import = NULL;
|
PyObject *import = NULL;
|
||||||
PyObject *builtins = NULL;
|
PyObject *builtins = NULL;
|
||||||
PyObject *modules = NULL;
|
|
||||||
PyObject *r = NULL;
|
PyObject *r = NULL;
|
||||||
|
|
||||||
/* Initialize constant string objects */
|
/* Initialize constant string objects */
|
||||||
|
@ -1757,8 +1889,7 @@ PyImport_Import(PyObject *module_name)
|
||||||
goto err;
|
goto err;
|
||||||
Py_DECREF(r);
|
Py_DECREF(r);
|
||||||
|
|
||||||
modules = PyImport_GetModuleDict();
|
r = _PyImport_GetModule(module_name);
|
||||||
r = PyDict_GetItemWithError(modules, module_name);
|
|
||||||
if (r != NULL) {
|
if (r != NULL) {
|
||||||
Py_INCREF(r);
|
Py_INCREF(r);
|
||||||
}
|
}
|
||||||
|
|
|
@ -215,7 +215,8 @@ _PyImport_LoadDynamicModuleWithSpec(PyObject *spec, FILE *fp)
|
||||||
else
|
else
|
||||||
Py_INCREF(path);
|
Py_INCREF(path);
|
||||||
|
|
||||||
if (_PyImport_FixupExtensionObject(m, name_unicode, path) < 0)
|
PyObject *modules = PyImport_GetModuleDict();
|
||||||
|
if (_PyImport_FixupExtensionObject(m, name_unicode, path, modules) < 0)
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
Py_DECREF(name_unicode);
|
Py_DECREF(name_unicode);
|
||||||
|
|
|
@ -41,6 +41,7 @@ _Py_IDENTIFIER(name);
|
||||||
_Py_IDENTIFIER(stdin);
|
_Py_IDENTIFIER(stdin);
|
||||||
_Py_IDENTIFIER(stdout);
|
_Py_IDENTIFIER(stdout);
|
||||||
_Py_IDENTIFIER(stderr);
|
_Py_IDENTIFIER(stderr);
|
||||||
|
_Py_IDENTIFIER(threading);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
@ -262,7 +263,6 @@ initimport(PyInterpreterState *interp, PyObject *sysmod)
|
||||||
{
|
{
|
||||||
PyObject *importlib;
|
PyObject *importlib;
|
||||||
PyObject *impmod;
|
PyObject *impmod;
|
||||||
PyObject *sys_modules;
|
|
||||||
PyObject *value;
|
PyObject *value;
|
||||||
|
|
||||||
/* Import _importlib through its frozen version, _frozen_importlib. */
|
/* Import _importlib through its frozen version, _frozen_importlib. */
|
||||||
|
@ -293,11 +293,7 @@ initimport(PyInterpreterState *interp, PyObject *sysmod)
|
||||||
else if (Py_VerboseFlag) {
|
else if (Py_VerboseFlag) {
|
||||||
PySys_FormatStderr("import _imp # builtin\n");
|
PySys_FormatStderr("import _imp # builtin\n");
|
||||||
}
|
}
|
||||||
sys_modules = PyImport_GetModuleDict();
|
if (_PyImport_SetModuleString("_imp", impmod) < 0) {
|
||||||
if (Py_VerboseFlag) {
|
|
||||||
PySys_FormatStderr("import sys # builtin\n");
|
|
||||||
}
|
|
||||||
if (PyDict_SetItemString(sys_modules, "_imp", impmod) < 0) {
|
|
||||||
Py_FatalError("Py_Initialize: can't save _imp to sys.modules");
|
Py_FatalError("Py_Initialize: can't save _imp to sys.modules");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -647,10 +643,20 @@ void _Py_InitializeCore(const _PyCoreConfig *config)
|
||||||
if (!_PyFloat_Init())
|
if (!_PyFloat_Init())
|
||||||
Py_FatalError("Py_InitializeCore: can't init float");
|
Py_FatalError("Py_InitializeCore: can't init float");
|
||||||
|
|
||||||
interp->modules = PyDict_New();
|
PyObject *modules = PyDict_New();
|
||||||
if (interp->modules == NULL)
|
if (modules == NULL)
|
||||||
Py_FatalError("Py_InitializeCore: can't make modules dictionary");
|
Py_FatalError("Py_InitializeCore: can't make modules dictionary");
|
||||||
|
|
||||||
|
sysmod = _PySys_BeginInit();
|
||||||
|
if (sysmod == NULL)
|
||||||
|
Py_FatalError("Py_InitializeCore: can't initialize sys");
|
||||||
|
interp->sysdict = PyModule_GetDict(sysmod);
|
||||||
|
if (interp->sysdict == NULL)
|
||||||
|
Py_FatalError("Py_InitializeCore: can't initialize sys dict");
|
||||||
|
Py_INCREF(interp->sysdict);
|
||||||
|
PyDict_SetItemString(interp->sysdict, "modules", modules);
|
||||||
|
_PyImport_FixupBuiltin(sysmod, "sys", modules);
|
||||||
|
|
||||||
/* Init Unicode implementation; relies on the codec registry */
|
/* Init Unicode implementation; relies on the codec registry */
|
||||||
if (_PyUnicode_Init() < 0)
|
if (_PyUnicode_Init() < 0)
|
||||||
Py_FatalError("Py_InitializeCore: can't initialize unicode");
|
Py_FatalError("Py_InitializeCore: can't initialize unicode");
|
||||||
|
@ -661,7 +667,7 @@ void _Py_InitializeCore(const _PyCoreConfig *config)
|
||||||
bimod = _PyBuiltin_Init();
|
bimod = _PyBuiltin_Init();
|
||||||
if (bimod == NULL)
|
if (bimod == NULL)
|
||||||
Py_FatalError("Py_InitializeCore: can't initialize builtins modules");
|
Py_FatalError("Py_InitializeCore: can't initialize builtins modules");
|
||||||
_PyImport_FixupBuiltin(bimod, "builtins");
|
_PyImport_FixupBuiltin(bimod, "builtins", modules);
|
||||||
interp->builtins = PyModule_GetDict(bimod);
|
interp->builtins = PyModule_GetDict(bimod);
|
||||||
if (interp->builtins == NULL)
|
if (interp->builtins == NULL)
|
||||||
Py_FatalError("Py_InitializeCore: can't initialize builtins dict");
|
Py_FatalError("Py_InitializeCore: can't initialize builtins dict");
|
||||||
|
@ -670,17 +676,6 @@ void _Py_InitializeCore(const _PyCoreConfig *config)
|
||||||
/* initialize builtin exceptions */
|
/* initialize builtin exceptions */
|
||||||
_PyExc_Init(bimod);
|
_PyExc_Init(bimod);
|
||||||
|
|
||||||
sysmod = _PySys_BeginInit();
|
|
||||||
if (sysmod == NULL)
|
|
||||||
Py_FatalError("Py_InitializeCore: can't initialize sys");
|
|
||||||
interp->sysdict = PyModule_GetDict(sysmod);
|
|
||||||
if (interp->sysdict == NULL)
|
|
||||||
Py_FatalError("Py_InitializeCore: can't initialize sys dict");
|
|
||||||
Py_INCREF(interp->sysdict);
|
|
||||||
_PyImport_FixupBuiltin(sysmod, "sys");
|
|
||||||
PyDict_SetItemString(interp->sysdict, "modules",
|
|
||||||
interp->modules);
|
|
||||||
|
|
||||||
/* Set up a preliminary stderr printer until we have enough
|
/* Set up a preliminary stderr printer until we have enough
|
||||||
infrastructure for the io module in place. */
|
infrastructure for the io module in place. */
|
||||||
pstderr = PyFile_NewStdPrinter(fileno(stderr));
|
pstderr = PyFile_NewStdPrinter(fileno(stderr));
|
||||||
|
@ -1178,9 +1173,22 @@ Py_NewInterpreter(void)
|
||||||
|
|
||||||
/* XXX The following is lax in error checking */
|
/* XXX The following is lax in error checking */
|
||||||
|
|
||||||
interp->modules = PyDict_New();
|
PyObject *modules = PyDict_New();
|
||||||
|
if (modules == NULL)
|
||||||
|
Py_FatalError("Py_NewInterpreter: can't make modules dictionary");
|
||||||
|
|
||||||
bimod = _PyImport_FindBuiltin("builtins");
|
sysmod = _PyImport_FindBuiltin("sys", modules);
|
||||||
|
if (sysmod != NULL) {
|
||||||
|
interp->sysdict = PyModule_GetDict(sysmod);
|
||||||
|
if (interp->sysdict == NULL)
|
||||||
|
goto handle_error;
|
||||||
|
Py_INCREF(interp->sysdict);
|
||||||
|
PyDict_SetItemString(interp->sysdict, "modules", modules);
|
||||||
|
PySys_SetPath(Py_GetPath());
|
||||||
|
_PySys_EndInit(interp->sysdict);
|
||||||
|
}
|
||||||
|
|
||||||
|
bimod = _PyImport_FindBuiltin("builtins", modules);
|
||||||
if (bimod != NULL) {
|
if (bimod != NULL) {
|
||||||
interp->builtins = PyModule_GetDict(bimod);
|
interp->builtins = PyModule_GetDict(bimod);
|
||||||
if (interp->builtins == NULL)
|
if (interp->builtins == NULL)
|
||||||
|
@ -1191,18 +1199,9 @@ Py_NewInterpreter(void)
|
||||||
/* initialize builtin exceptions */
|
/* initialize builtin exceptions */
|
||||||
_PyExc_Init(bimod);
|
_PyExc_Init(bimod);
|
||||||
|
|
||||||
sysmod = _PyImport_FindBuiltin("sys");
|
|
||||||
if (bimod != NULL && sysmod != NULL) {
|
if (bimod != NULL && sysmod != NULL) {
|
||||||
PyObject *pstderr;
|
PyObject *pstderr;
|
||||||
|
|
||||||
interp->sysdict = PyModule_GetDict(sysmod);
|
|
||||||
if (interp->sysdict == NULL)
|
|
||||||
goto handle_error;
|
|
||||||
Py_INCREF(interp->sysdict);
|
|
||||||
_PySys_EndInit(interp->sysdict);
|
|
||||||
PySys_SetPath(Py_GetPath());
|
|
||||||
PyDict_SetItemString(interp->sysdict, "modules",
|
|
||||||
interp->modules);
|
|
||||||
/* Set up a preliminary stderr printer until we have enough
|
/* Set up a preliminary stderr printer until we have enough
|
||||||
infrastructure for the io module in place. */
|
infrastructure for the io module in place. */
|
||||||
pstderr = PyFile_NewStdPrinter(fileno(stderr));
|
pstderr = PyFile_NewStdPrinter(fileno(stderr));
|
||||||
|
@ -1882,14 +1881,13 @@ wait_for_thread_shutdown(void)
|
||||||
#ifdef WITH_THREAD
|
#ifdef WITH_THREAD
|
||||||
_Py_IDENTIFIER(_shutdown);
|
_Py_IDENTIFIER(_shutdown);
|
||||||
PyObject *result;
|
PyObject *result;
|
||||||
PyThreadState *tstate = PyThreadState_GET();
|
PyObject *threading = _PyImport_GetModuleId(&PyId_threading);
|
||||||
PyObject *threading = PyMapping_GetItemString(tstate->interp->modules,
|
|
||||||
"threading");
|
|
||||||
if (threading == NULL) {
|
if (threading == NULL) {
|
||||||
/* threading not imported */
|
/* threading not imported */
|
||||||
PyErr_Clear();
|
PyErr_Clear();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Py_INCREF(threading);
|
||||||
result = _PyObject_CallMethodId(threading, &PyId__shutdown, NULL);
|
result = _PyObject_CallMethodId(threading, &PyId__shutdown, NULL);
|
||||||
if (result == NULL) {
|
if (result == NULL) {
|
||||||
PyErr_WriteUnraisable(threading);
|
PyErr_WriteUnraisable(threading);
|
||||||
|
|
|
@ -97,7 +97,6 @@ PyInterpreterState_New(void)
|
||||||
if (head_mutex == NULL)
|
if (head_mutex == NULL)
|
||||||
Py_FatalError("Can't initialize threads for interpreter");
|
Py_FatalError("Can't initialize threads for interpreter");
|
||||||
#endif
|
#endif
|
||||||
interp->modules = NULL;
|
|
||||||
interp->modules_by_index = NULL;
|
interp->modules_by_index = NULL;
|
||||||
interp->sysdict = NULL;
|
interp->sysdict = NULL;
|
||||||
interp->builtins = NULL;
|
interp->builtins = NULL;
|
||||||
|
@ -158,7 +157,6 @@ PyInterpreterState_Clear(PyInterpreterState *interp)
|
||||||
Py_CLEAR(interp->codec_search_path);
|
Py_CLEAR(interp->codec_search_path);
|
||||||
Py_CLEAR(interp->codec_search_cache);
|
Py_CLEAR(interp->codec_search_cache);
|
||||||
Py_CLEAR(interp->codec_error_registry);
|
Py_CLEAR(interp->codec_error_registry);
|
||||||
Py_CLEAR(interp->modules);
|
|
||||||
Py_CLEAR(interp->modules_by_index);
|
Py_CLEAR(interp->modules_by_index);
|
||||||
Py_CLEAR(interp->sysdict);
|
Py_CLEAR(interp->sysdict);
|
||||||
Py_CLEAR(interp->builtins);
|
Py_CLEAR(interp->builtins);
|
||||||
|
|
|
@ -159,13 +159,11 @@ static PyObject *
|
||||||
sys_displayhook(PyObject *self, PyObject *o)
|
sys_displayhook(PyObject *self, PyObject *o)
|
||||||
{
|
{
|
||||||
PyObject *outf;
|
PyObject *outf;
|
||||||
PyInterpreterState *interp = PyThreadState_GET()->interp;
|
|
||||||
PyObject *modules = interp->modules;
|
|
||||||
PyObject *builtins;
|
PyObject *builtins;
|
||||||
static PyObject *newline = NULL;
|
static PyObject *newline = NULL;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
builtins = _PyDict_GetItemId(modules, &PyId_builtins);
|
builtins = _PyImport_GetModuleId(&PyId_builtins);
|
||||||
if (builtins == NULL) {
|
if (builtins == NULL) {
|
||||||
PyErr_SetString(PyExc_RuntimeError, "lost builtins module");
|
PyErr_SetString(PyExc_RuntimeError, "lost builtins module");
|
||||||
return NULL;
|
return NULL;
|
||||||
|
@ -1929,7 +1927,7 @@ _PySys_BeginInit(void)
|
||||||
PyObject *m, *sysdict, *version_info;
|
PyObject *m, *sysdict, *version_info;
|
||||||
int res;
|
int res;
|
||||||
|
|
||||||
m = PyModule_Create(&sysmodule);
|
m = _PyModule_CreateInitialized(&sysmodule, PYTHON_API_VERSION);
|
||||||
if (m == NULL)
|
if (m == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
sysdict = PyModule_GetDict(m);
|
sysdict = PyModule_GetDict(m);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue