From 93c92f7d1dbb6e7e472f1d0444c6968858113de2 Mon Sep 17 00:00:00 2001 From: Eric Snow Date: Wed, 13 Sep 2017 23:46:04 -0700 Subject: bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) PR #1638, for bpo-28411, causes problems in some (very) edge cases. Until that gets sorted out, we're reverting the merge. PR #3506, a fix on top of #1638, is also getting reverted. --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/ceval.c') diff --git a/Python/ceval.c b/Python/ceval.c index 5dd7cd9f03..08533a42bf 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -4935,7 +4935,7 @@ import_from(PyObject *v, PyObject *name) Py_DECREF(pkgname); return NULL; } - x = _PyImport_GetModule(fullmodname); + x = PyDict_GetItem(PyImport_GetModuleDict(), fullmodname); Py_DECREF(fullmodname); if (x == NULL) { goto error; -- cgit v1.2.1