Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/includes/
Drun-func.c20 pModule = PyImport_Import(pName); in main()
/external/python/cpython3/Include/
Dimport.h78 PyAPI_FUNC(PyObject *) PyImport_Import(PyObject *name);
/external/ml_dtypes/ml_dtypes/_src/
Ddtypes.cc379 Safe_PyObjectPtr numpy = make_safe(PyImport_Import(numpy_str.get())); in Initialize()
/external/python/cpython3/Doc/c-api/
Dimport.rst16 This is a wrapper around :c:func:`PyImport_Import()` which takes a
72 .. c:function:: PyObject* PyImport_Import(PyObject *name)
/external/python/cpython3/Doc/extending/
Dembedding.rst195 pModule = PyImport_Import(pName);
198 :c:func:`PyImport_Import`. This routine needs a Python string as its argument,
/external/AFLplusplus/src/
Dafl-fuzz-python.c202 py->py_module = PyImport_Import(py_name); in init_py_module()
/external/python/cpython3/Python/
Dimport.c3399 result = PyImport_Import(pname); in PyImport_ImportModule()
3911 PyImport_Import(PyObject *module_name) in PyImport_Import() function
4190 PyObject *mod = PyImport_Import(modname); in _PyImport_GetModuleAttr()
D_warnings.c207 warnings_module = PyImport_Import(&_Py_ID(warnings)); in get_warnings_attr()
Dpylifecycle.c1150 PyObject *presite = PyImport_Import(presite_modname); in run_presite()
Dsysmodule.c604 PyObject *module = PyImport_Import(modulepath); in sys_breakpointhook()
/external/python/cpython3/PC/
Dpython3dll.c311 EXPORT_FUNC(PyImport_Import)
/external/python/cpython3/Doc/data/
Dstable_abi.dat320 func,PyImport_Import,3.2,,
Drefcounts.dat1068 PyImport_Import:PyObject*::+1:
1069 PyImport_Import:PyObject*:name:0:
Dpython3.13.abi331 …<elf-symbol name='PyImport_Import' type='func-type' binding='global-binding' visibility='default-v…
9730PyImport_Import' mangled-name='PyImport_Import' filepath='./Include/import.h' line='78' column='1'…
/external/python/cpython3/Tools/c-analyzer/
DTODO177 Python/import.c:PyImport_Import():builtins_str static PyObject *builtins_str
178 Python/import.c:PyImport_Import():import_str static PyObject *import_str
179 Python/import.c:PyImport_Import():silly_list static PyObject *silly_list
/external/tensorflow/tensorflow/python/lib/core/
Dbfloat16.cc1818 Safe_PyObjectPtr numpy = make_safe(PyImport_Import(numpy_str.get())); in Initialize()
/external/python/cpython3/Misc/
Dstable_abi.toml881 [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
/external/python/cpython3/Modules/
D_pickle.c3637 module = PyImport_Import(module_name); in save_global()
7090 module = PyImport_Import(module_name); in _pickle_Unpickler_find_class_impl()
D_datetimemodule.c5484 PyObject *module = PyImport_Import(&_Py_ID(_strptime)); in datetime_strptime()
/external/python/cpython3/Objects/
Dtypeobject.c6546 return PyImport_Import(&_Py_ID(copyreg)); in import_copyreg()
/external/python/cpython3/Doc/whatsnew/
D2.6.rst3290 * C API: the :c:func:`PyImport_Import` and :c:func:`PyImport_ImportModule`