diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1995-06-12 15:51:34 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1995-06-12 15:51:34 (GMT) |
commit | fbe6d33ffd64ce1b31b2dab332c617f96b5e3fbf (patch) | |
tree | 11b00b4887570fe6c5105b3e2d210036e3c5651d /Python/importdl.h | |
parent | 7d0bc8343f55f2e467abb2ce50b76b054897d72f (diff) | |
download | cpython-fbe6d33ffd64ce1b31b2dab332c617f96b5e3fbf.zip cpython-fbe6d33ffd64ce1b31b2dab332c617f96b5e3fbf.tar.gz cpython-fbe6d33ffd64ce1b31b2dab332c617f96b5e3fbf.tar.bz2 |
Check if we've already loaded a dynamic module under a different name.
Diffstat (limited to 'Python/importdl.h')
-rw-r--r-- | Python/importdl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/importdl.h b/Python/importdl.h index ea98ed5..8dbf55f 100644 --- a/Python/importdl.h +++ b/Python/importdl.h @@ -37,6 +37,6 @@ extern struct filedescr { extern object *import_modules; -extern object *load_dynamic_module PROTO((char *name, char *pathname)); +extern object *load_dynamic_module PROTO((char *name, char *pathname, FILE *)); extern int import_maxsuffixsize; |