summaryrefslogtreecommitdiff
path: root/Python/importdl.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-05-14 17:36:12 +0000
committerGuido van Rossum <guido@python.org>1997-05-14 17:36:12 +0000
commit417dc95bffff84bedd04841ff07974107d8441f3 (patch)
treef050dc2dfcacd9c04b33e153c0f231712ee48482 /Python/importdl.h
parent90f993f565c8e21e23dfff624494bf7142168f3b (diff)
downloadcpython-417dc95bffff84bedd04841ff07974107d8441f3.tar.gz
One last rename glitch: import_modules -> _PyImport_Modules.
Diffstat (limited to 'Python/importdl.h')
-rw-r--r--Python/importdl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/importdl.h b/Python/importdl.h
index 48aa1a44f5..f1bdeab8be 100644
--- a/Python/importdl.h
+++ b/Python/importdl.h
@@ -42,7 +42,7 @@ extern struct filedescr {
enum filetype type;
} _PyImport_Filetab[];
-extern PyObject *import_modules;
+extern PyObject *_PyImport_Modules;
extern PyObject *_PyImport_LoadDynamicModule
Py_PROTO((char *name, char *pathname, FILE *));