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/importdl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Python/importdl.c') diff --git a/Python/importdl.c b/Python/importdl.c index 32fb7e1be2..d8656b9433 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -215,8 +215,7 @@ _PyImport_LoadDynamicModuleWithSpec(PyObject *spec, FILE *fp) else Py_INCREF(path); - PyObject *modules = PyImport_GetModuleDict(); - if (_PyImport_FixupExtensionObject(m, name_unicode, path, modules) < 0) + if (_PyImport_FixupExtensionObject(m, name_unicode, path) < 0) goto error; Py_DECREF(name_unicode); -- cgit v1.2.1