Home
last modified time | relevance | path

Searched refs:PyImport_ImportModuleLevel (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Include/
Dimport.h18 PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(char *name,
22 PyImport_ImportModuleLevel(n, g, l, f, -1)
/external/python/cpython3/Include/
Dimport.h66 PyAPI_FUNC(PyObject *) PyImport_ImportModuleLevel(
84 PyImport_ImportModuleLevel(n, g, l, f, 0)
/external/python/cpython2/Doc/data/
Drefcounts.dat522 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/
Dimport.rst68 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/
Drefcounts.dat999 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/
Dpython3.def293 PyImport_ImportModuleLevel=python37.PyImport_ImportModuleLevel
/external/python/cpython3/Python/
Dimport.c1833 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/
Dcodecs.c1030 mod = PyImport_ImportModuleLevel("encodings", NULL, NULL, NULL, 0); in _PyCodecRegistry_Init()
Dimport.c2329 PyImport_ImportModuleLevel(char *name, PyObject *globals, PyObject *locals, in PyImport_ImportModuleLevel() function
2911 builtins = PyImport_ImportModuleLevel("__builtin__", in PyImport_Import()
Dbltinmodule.c49 return PyImport_ImportModuleLevel(name, globals, locals, in builtin___import__()
/external/python/cpython2/PC/os2emx/
Dpython27.def965 "PyImport_ImportModuleLevel"
/external/python/cpython3/Doc/c-api/
Dimport.rst73 .. c:function:: PyObject* PyImport_ImportModuleLevel(const char *name, PyObject *globals, PyObject …
/external/python/cpython3/Doc/whatsnew/
D3.3.rst2486 longer valid, the same now holds for :c:func:`PyImport_ImportModuleLevel`.
/external/python/cpython3/Misc/
DHISTORY10556 - Issue #12173: The first argument of PyImport_ImportModuleLevel is now `const