diff options
author | Guido van Rossum <guido@python.org> | 1997-04-29 20:08:16 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-04-29 20:08:16 (GMT) |
commit | 79f25d9a7b853a9f491a0cfe4b81eeb9e2d19569 (patch) | |
tree | 5e456453855bd2906af42f998d70f17e8b834cba /Python/importdl.h | |
parent | 65bf9f265e4052c3eee95cd73f8de66bc92e53bf (diff) | |
download | cpython-79f25d9a7b853a9f491a0cfe4b81eeb9e2d19569.zip cpython-79f25d9a7b853a9f491a0cfe4b81eeb9e2d19569.tar.gz cpython-79f25d9a7b853a9f491a0cfe4b81eeb9e2d19569.tar.bz2 |
Quickly renamed the remaining files -- this directory is done.
Diffstat (limited to 'Python/importdl.h')
-rw-r--r-- | Python/importdl.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Python/importdl.h b/Python/importdl.h index 24f061d..48aa1a4 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; |