Searched refs:PyImport_ImportModuleLevel (Results 1 – 14 of 14) sorted by relevance
/external/python/cpython2/Include/ |
D | import.h | 18 PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(char *name, 22 PyImport_ImportModuleLevel(n, g, l, f, -1)
|
/external/python/cpython3/Include/ |
D | import.h | 66 PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel( 84 PyImport_ImportModuleLevel(n, g, l, f, 0)
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 522 PyImport_ImportModuleLevel:PyObject*::+1: 523 PyImport_ImportModuleLevel:char*:name:: 524 PyImport_ImportModuleLevel:PyObject*:globals:0:??? 525 PyImport_ImportModuleLevel:PyObject*:locals:0:??? 526 PyImport_ImportModuleLevel:PyObject*:fromlist:0:??? 527 PyImport_ImportModuleLevel:int:level::
|
/external/python/cpython2/Doc/c-api/ |
D | import.rst | 68 The function is an alias for :c:func:`PyImport_ImportModuleLevel` with 72 .. c:function:: PyObject* PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *local…
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 999 PyImport_ImportModuleLevel:PyObject*::+1: 1000 PyImport_ImportModuleLevel:const char*:name:: 1001 PyImport_ImportModuleLevel:PyObject*:globals:0:??? 1002 PyImport_ImportModuleLevel:PyObject*:locals:0:??? 1003 PyImport_ImportModuleLevel:PyObject*:fromlist:0:??? 1004 PyImport_ImportModuleLevel:int:level::
|
/external/python/cpython3/PC/ |
D | python3.def | 293 PyImport_ImportModuleLevel=python37.PyImport_ImportModuleLevel
|
/external/python/cpython3/Python/ |
D | import.c | 1833 PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject *locals, in PyImport_ImportModuleLevel() function 1913 builtins = PyImport_ImportModuleLevel("builtins", in PyImport_Import()
|
/external/python/cpython2/Python/ |
D | codecs.c | 1030 mod = PyImport_ImportModuleLevel("encodings", NULL, NULL, NULL, 0); in _PyCodecRegistry_Init()
|
D | import.c | 2329 PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals, in PyImport_ImportModuleLevel() function 2911 builtins = PyImport_ImportModuleLevel("__builtin__", in PyImport_Import()
|
D | bltinmodule.c | 49 return PyImport_ImportModuleLevel(name, globals, locals, in builtin___import__()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 965 "PyImport_ImportModuleLevel"
|
/external/python/cpython3/Doc/c-api/ |
D | import.rst | 73 .. c:function:: PyObject* PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject …
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 2486 longer valid, the same now holds for :c:func:`PyImport_ImportModuleLevel`.
|
/external/python/cpython3/Misc/ |
D | HISTORY | 10556 - Issue #12173: The first argument of PyImport_ImportModuleLevel is now `const
|