return Py_None;
}
-PyObject *
-PyImport_GetModulesReloading(void)
-{
- PyInterpreterState *interp = PyThreadState_Get()->interp;
- if (interp->modules_reloading == NULL)
- Py_FatalError("PyImport_GetModulesReloading: "
- "no modules_reloading dictionary!");
- return interp->modules_reloading;
-}
-
static void
imp_modules_reloading_clear(void)
{
PyObject *
PyImport_ReloadModule(PyObject *m)
{
- PyObject *modules_reloading = PyImport_GetModulesReloading();
+ PyInterpreterState *interp = PyThreadState_Get()->interp;
+ PyObject *modules_reloading = interp->modules_reloading;
PyObject *modules = PyImport_GetModuleDict();
PyObject *path = NULL, *loader = NULL, *existing_m = NULL;
char *name, *subname;
struct filedescr *fdp;
FILE *fp = NULL;
PyObject *newm;
+
+ if (modules_reloading == NULL) {
+ Py_FatalError("PyImport_ReloadModule: "
+ "no modules_reloading dictionary!");
+ return NULL;
+ }
if (m == NULL || !PyModule_Check(m)) {
PyErr_SetString(PyExc_TypeError,