From: Martin v. Löwis Date: Wed, 22 Jan 2003 09:00:38 +0000 (+0000) Subject: Patch #671459: Invoke import hooks in Py_NewInterpreter. X-Git-Tag: v2.3c1~2366 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d7ceb222bd19ea25b0b4d234623df0a9f73c96b5;p=thirdparty%2FPython%2Fcpython.git Patch #671459: Invoke import hooks in Py_NewInterpreter. --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index fba3ade8003a..3aa63e9432d3 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -338,6 +338,7 @@ Py_NewInterpreter(void) PySys_SetPath(Py_GetPath()); PyDict_SetItemString(interp->sysdict, "modules", interp->modules); + _PyImportHooks_Init(); initmain(); if (!Py_NoSiteFlag) initsite();