summaryrefslogtreecommitdiff
path: root/Python/importdl.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-04-29 20:08:16 +0000
committerGuido van Rossum <guido@python.org>1997-04-29 20:08:16 +0000
commit5574f2d04b674f17ddc1e036116d2e5845a6db5b (patch)
tree0940ae3c05dda8d9e6ceac1bb1a4346489abdad0 /Python/importdl.h
parentc322b4e345bbe10ce821dcc37ebbcc5b967e601d (diff)
downloadcpython-5574f2d04b674f17ddc1e036116d2e5845a6db5b.tar.gz
Quickly renamed the remaining files -- this directory is done.
Diffstat (limited to 'Python/importdl.h')
-rw-r--r--Python/importdl.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/Python/importdl.h b/Python/importdl.h
index 24f061d092..48aa1a44f5 100644
--- a/Python/importdl.h
+++ b/Python/importdl.h
@@ -40,10 +40,11 @@ extern struct filedescr {
char *suffix;
char *mode;
enum filetype type;
-} import_filetab[];
+} _PyImport_Filetab[];
-extern object *import_modules;
+extern PyObject *import_modules;
-extern object *load_dynamic_module PROTO((char *name, char *pathname, FILE *));
+extern PyObject *_PyImport_LoadDynamicModule
+ Py_PROTO((char *name, char *pathname, FILE *));
-extern int import_maxsuffixsize;
+extern int _PyImport_MaxSuffixSize;