summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorCollin Winter <collinw@gmail.com>2007-03-13 23:04:29 +0000
committerCollin Winter <collinw@gmail.com>2007-03-13 23:04:29 +0000
commit2e8b526d8e5fde61cff52569c353193d3109cce5 (patch)
tree7899a2619236be082e040f8cb236486a9396d497 /Python
parent0ec1138fd6ac72b7bdbe461128b10f5149072c16 (diff)
downloadcpython-2e8b526d8e5fde61cff52569c353193d3109cce5.tar.gz
Inline PyImport_GetModulesReloading(). Backport from r54368.
Diffstat (limited to 'Python')
-rw-r--r--Python/import.c18
1 files changed, 8 insertions, 10 deletions
diff --git a/Python/import.c b/Python/import.c
index b62eeef768..291e63dc79 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -339,15 +339,6 @@ imp_release_lock(PyObject *self, PyObject *noargs)
return Py_None;
}
-PyObject *
-PyImport_GetModulesReloading(void)
-{
- PyInterpreterState *interp = PyThreadState_Get()->interp;
- if (interp->modules_reloading == NULL)
- Py_FatalError("PyImport_GetModuleDict: no modules_reloading dictionary!");
- return interp->modules_reloading;
-}
-
static void
imp_modules_reloading_clear (void)
{
@@ -2420,7 +2411,8 @@ import_submodule(PyObject *mod, char *subname, char *fullname)
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;
@@ -2428,6 +2420,12 @@ PyImport_ReloadModule(PyObject *m)
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,