diff options
author | Guido van Rossum <guido@python.org> | 1997-09-05 07:11:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-09-05 07:11:32 (GMT) |
commit | 026de19906695cc0f63977da4e7740214048ba6f (patch) | |
tree | 58bc69f5224856df46e5807c39e6801212251596 /PC | |
parent | 9eb671fac3ab8b47c7511513ab9576fee0aefc91 (diff) | |
download | cpython-026de19906695cc0f63977da4e7740214048ba6f.zip cpython-026de19906695cc0f63977da4e7740214048ba6f.tar.gz cpython-026de19906695cc0f63977da4e7740214048ba6f.tar.bz2 |
Added PyImport_ImportModuleEx(name, globals, locals, fromlist); this
is like PyImport_ImporModule(name) but receives the globals and locals
dict and the fromlist arguments as well. (The name is a char*; the
others are PyObject*s).
Diffstat (limited to 'PC')
-rw-r--r-- | PC/python_nt.def | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/PC/python_nt.def b/PC/python_nt.def index 9fde47b..0d8ad22 100644 --- a/PC/python_nt.def +++ b/PC/python_nt.def @@ -211,6 +211,8 @@ EXPORTS PyImport_GetModuleDict PyImport_GetMagicNumber PyImport_ImportModule + PyImport_ImportModuleEx + PyImport_Import PyImport_ImportFrozenModule PyImport_ReloadModule PyNumber_Coerce |