aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 2757eba927b..b64a9bf7962 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -199,8 +199,6 @@ import_init(PyInterpreterState *interp, PyObject *sysmod)
PyObject *value;
/* Import _importlib through its frozen version, _frozen_importlib. */
- /* XXX(bcannon): The file path for _frozen_importlib is completely off
- */
if (PyImport_ImportFrozenModule("_frozen_importlib") <= 0) {
Py_FatalError("Py_Initialize: can't import _frozen_importlib");
}
@@ -237,6 +235,7 @@ import_init(PyInterpreterState *interp, PyObject *sysmod)
Py_FatalError("Py_Initialize: importlib install failed");
}
Py_DECREF(value);
+ Py_DECREF(impmod);
_PyImportZip_Init();
}