diff options
author | Guido van Rossum <guido@python.org> | 1997-05-14 17:36:12 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-14 17:36:12 (GMT) |
commit | af5dfb4cebd670679612ddb0a0520fe711830a1d (patch) | |
tree | db364d45d0a06f4684daa3ff57af5a04b77654f4 /Python/importdl.c | |
parent | 39d6ae7b6c6bcd351686e7fa0891c203fd9214b2 (diff) | |
download | cpython-af5dfb4cebd670679612ddb0a0520fe711830a1d.zip cpython-af5dfb4cebd670679612ddb0a0520fe711830a1d.tar.gz cpython-af5dfb4cebd670679612ddb0a0520fe711830a1d.tar.bz2 |
One last rename glitch: import_modules -> _PyImport_Modules.
Diffstat (limited to 'Python/importdl.c')
-rw-r--r-- | Python/importdl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/importdl.c b/Python/importdl.c index 33c0e5d..436a8de 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -527,7 +527,7 @@ _PyImport_LoadDynamicModule(name, pathname, fp) (*p)(); /* XXX Need check for err_occurred() here */ - m = PyDict_GetItemString(import_modules, name); + m = PyDict_GetItemString(_PyImport_Modules, name); if (m == NULL) { if (PyErr_Occurred() == NULL) PyErr_SetString(PyExc_SystemError, |