Home
last modified time | relevance | path

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

/third_party/python/Include/
Dmodsupport.h68 PyAPI_FUNC(int) PyModule_ExecDef(PyObject *module, PyModuleDef *def);
/third_party/python/Doc/c-api/
Dmodule.rst387 ``PyModule_ExecDef`` must be called to fully initialize a module.
411 .. c:function:: int PyModule_ExecDef(PyObject *module, PyModuleDef *def)
/third_party/python/Objects/
Dmoduleobject.c384 PyModule_ExecDef(PyObject *module, PyModuleDef *def) in PyModule_ExecDef() function
/third_party/python/PC/
Dpython3dll.c377 EXPORT_FUNC(PyModule_ExecDef)
/third_party/python/Doc/data/
Dstable_abi.dat406 function,PyModule_ExecDef,3.7,,
Drefcounts.dat1368 PyModule_ExecDef:int:::
1369 PyModule_ExecDef:PyObject*:module:0:
1370 PyModule_ExecDef:PyModuleDef*:def::
/third_party/python/Python/
Dimport.c2333 return PyModule_ExecDef(mod, def); in exec_builtin_or_dynamic()
/third_party/python/Misc/
Dstable_abi.toml1968 [function.PyModule_ExecDef]
/third_party/python/Doc/whatsnew/
D3.5.rst2202 and :c:func:`PyModule_ExecDef` functions introduced by :pep:`489` --