Home
last modified time | relevance | path

Searched refs:PyImport_ExecCodeModuleObject (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Include/
Dimport.h27 PyAPI_FUNC(PyObject *) PyImport_ExecCodeModuleObject(
/external/python/cpython3/Doc/c-api/
Dimport.rst171 .. c:function:: PyObject* PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pat…
186 Like :c:func:`PyImport_ExecCodeModuleObject`, but *name*, *pathname* and
/external/python/cpython3/Doc/data/
Drefcounts.dat1046 PyImport_ExecCodeModuleObject:PyObject*::+1:
1047 PyImport_ExecCodeModuleObject:const char*:name::
1048 PyImport_ExecCodeModuleObject:PyObject*:co:0:
1049 PyImport_ExecCodeModuleObject:PyObject*:pathname:0:
1050 PyImport_ExecCodeModuleObject:PyObject*:cpathname:0:
Dstable_abi.dat313 func,PyImport_ExecCodeModuleObject,3.7,,
Dpython3.13.abi323 …<elf-symbol name='PyImport_ExecCodeModuleObject' type='func-type' binding='global-binding' visibil…
26583PyImport_ExecCodeModuleObject' mangled-name='PyImport_ExecCodeModuleObject' filepath='Python/impor…
/external/python/cpython3/PC/
Dpython3dll.c304 EXPORT_FUNC(PyImport_ExecCodeModuleObject)
/external/python/cpython3/Python/
Dimport.c2594 m = PyImport_ExecCodeModuleObject(nameobj, co, pathobj, cpathobj); in PyImport_ExecCodeModuleWithPathnames()
2652 PyImport_ExecCodeModuleObject(PyObject *name, PyObject *co, PyObject *pathname, in PyImport_ExecCodeModuleObject() function
/external/python/cpython3/Misc/
Dstable_abi.toml1977 [function.PyImport_ExecCodeModuleObject]
DHISTORY2095 - Issue #21226: Set up modules properly in PyImport_ExecCodeModuleObject
6996 used the Python code instead. Leads to PyImport_ExecCodeModuleObject() to not
/external/python/cpython3/Tools/c-analyzer/
DTODO492 Python/import.c:PyImport_ExecCodeModuleObject():PyId__fix_up_module _Py_IDENTIFIER(_fix_up_module)
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst3636 Set up modules properly in PyImport_ExecCodeModuleObject (and friends).