Home
last modified time | relevance | path

Searched refs:PyModule_ExecDef (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython3/Include/
Dmodsupport.h54 PyAPI_FUNC(int) PyModule_ExecDef(PyObject *module, PyModuleDef *def);
/external/python/cpython3/Objects/
Dmoduleobject.c454 PyModule_ExecDef(PyObject *module, PyModuleDef *def) in PyModule_ExecDef() function
/external/python/cpython3/Doc/c-api/
Dmodule.rst457 ``PyModule_ExecDef`` must be called to fully initialize a module.
483 .. c:function:: int PyModule_ExecDef(PyObject *module, PyModuleDef *def)
/external/python/cpython3/PC/
Dpython3dll.c402 EXPORT_FUNC(PyModule_ExecDef)
/external/python/cpython3/Doc/data/
Dstable_abi.dat426 func,PyModule_ExecDef,3.7,,
Drefcounts.dat1431 PyModule_ExecDef:int:::
1432 PyModule_ExecDef:PyObject*:module:0:
1433 PyModule_ExecDef:PyModuleDef*:def::
Dpython3.13.abi477 …<elf-symbol name='PyModule_ExecDef' type='func-type' binding='global-binding' visibility='default-…
8152PyModule_ExecDef' mangled-name='PyModule_ExecDef' filepath='Objects/moduleobject.c' line='454' col…
/external/python/cpython3/Misc/
Dstable_abi.toml1989 [function.PyModule_ExecDef]
/external/python/cpython3/Python/
Dimport.c815 return PyModule_ExecDef(mod, def); in exec_builtin_or_dynamic()
/external/python/cpython3/Doc/whatsnew/
D3.5.rst2203 and :c:func:`PyModule_ExecDef` functions introduced by :pep:`489` --