Home
last modified time | relevance | path

Searched refs:PyImport_Import (Results 1 – 18 of 18) sorted by relevance

/third_party/python/Doc/includes/
Drun-func.c20 pModule = PyImport_Import(pName); in main()
/third_party/python/Include/
Dimport.h73 PyAPI_FUNC(PyObject *) PyImport_Import(PyObject *name);
/third_party/python/Doc/extending/
Dembedding.rst176 pModule = PyImport_Import(pName);
179 :c:func:`PyImport_Import`. This routine needs a Python string as its argument,
/third_party/python/Python/
Dimport.c1234 result = PyImport_Import(pname); in PyImport_ImportModule()
1765 PyImport_Import(PyObject *module_name) in PyImport_Import() function
D_warnings.c197 warnings_module = PyImport_Import(warnings_str); in get_warnings_attr()
Dsysmodule.c574 PyObject *module = PyImport_Import(modulepath); in sys_breakpointhook()
/third_party/python/PC/
Dpython3dll.c291 EXPORT_FUNC(PyImport_Import)
/third_party/python/Doc/c-api/
Dimport.rst81 .. c:function:: PyObject* PyImport_Import(PyObject *name)
/third_party/python/Doc/data/
Dstable_abi.dat302 function,PyImport_Import,3.2,
Drefcounts.dat1009 PyImport_Import:PyObject*::+1:
1010 PyImport_Import:PyObject*:name:0:
/third_party/python/Tools/c-analyzer/
DTODO218 Python/import.c:PyImport_Import():builtins_str static PyObject *builtins_str
219 Python/import.c:PyImport_Import():import_str static PyObject *import_str
220 Python/import.c:PyImport_Import():silly_list static PyObject *silly_list
/third_party/python/Misc/
Dstable_abi.txt776 function PyImport_Import
DHISTORY11912 - Issue #9252: PyImport_Import no longer uses a fromlist hack to return the
31334 - New C API PyImport_Import() which uses whatever __import__() hook
/third_party/python/Modules/
D_sre.c764 mod = PyImport_Import(name); in call()
D_pickle.c3623 module = PyImport_Import(module_name); in save_global()
7103 module = PyImport_Import(module_name); in _pickle_Unpickler_find_class_impl()
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv2075 Python/import.c PyImport_Import builtins_str -
2077 Python/import.c PyImport_Import import_str -
2104 Python/import.c PyImport_Import silly_list -
/third_party/python/Objects/
Dtypeobject.c4830 return PyImport_Import(copyreg_str); in import_copyreg()
/third_party/python/Doc/whatsnew/
D2.6.rst3269 * C API: the :c:func:`PyImport_Import` and :c:func:`PyImport_ImportModule`