Patch #671459: Invoke import hooks in Py_NewInterpreter.
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index fba3ade..3aa63e9 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -338,6 +338,7 @@
 		PySys_SetPath(Py_GetPath());
 		PyDict_SetItemString(interp->sysdict, "modules",
 				     interp->modules);
+		_PyImportHooks_Init();
 		initmain();
 		if (!Py_NoSiteFlag)
 			initsite();