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).
This commit is contained in:
Guido van Rossum 1997-09-05 07:11:32 +00:00
parent 9eb671fac3
commit 026de19906
2 changed files with 4 additions and 0 deletions

View file

@ -211,6 +211,8 @@ EXPORTS
PyImport_GetModuleDict
PyImport_GetMagicNumber
PyImport_ImportModule
PyImport_ImportModuleEx
PyImport_Import
PyImport_ImportFrozenModule
PyImport_ReloadModule
PyNumber_Coerce