summaryrefslogtreecommitdiffstats
path: root/Objects/moduleobject.c
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2017-09-14 18:18:12 (GMT)
committerGitHub <noreply@github.com>2017-09-14 18:18:12 (GMT)
commitd393c1b227f22fb9af66040b2b367c99a4d1fa9a (patch)
tree2bb1bb4f8b59d3c6ffa8dabbc43dc30357e2b25f /Objects/moduleobject.c
parent8dcf22f442320e4c1a5408e67b4c9002ad105f17 (diff)
downloadcpython-d393c1b227f22fb9af66040b2b367c99a4d1fa9a.zip
cpython-d393c1b227f22fb9af66040b2b367c99a4d1fa9a.tar.gz
cpython-d393c1b227f22fb9af66040b2b367c99a4d1fa9a.tar.bz2
bpo-28411: Isolate PyInterpreterState.modules (#3575)
A bunch of code currently uses PyInterpreterState.modules directly instead of PyImport_GetModuleDict(). This complicates efforts to make changes relative to sys.modules. This patch switches to using PyImport_GetModuleDict() uniformly. Also, a number of related uses of sys.modules are updated for uniformity for the same reason. Note that this code was already reviewed and merged as part of #1638. I reverted that and am now splitting it up into more focused parts.
Diffstat (limited to 'Objects/moduleobject.c')
-rw-r--r--Objects/moduleobject.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/Objects/moduleobject.c b/Objects/moduleobject.c
index 5fab06d..2be49fb 100644
--- a/Objects/moduleobject.c
+++ b/Objects/moduleobject.c
@@ -162,11 +162,17 @@ _add_methods_to_object(PyObject *module, PyObject *name, PyMethodDef *functions)
PyObject *
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;
PyModuleObject *m;
- PyInterpreterState *interp = PyThreadState_Get()->interp;
- if (interp->modules == NULL)
- Py_FatalError("Python import machinery not initialized");
+
if (!PyModuleDef_Init(module))
return NULL;
name = module->m_name;