Home
last modified time | relevance | path

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

/third_party/python/Include/
Dmodsupport.h161 PyAPI_FUNC(int) PyModule_ExecDef(PyObject *module, PyModuleDef *def);
/third_party/python/Objects/
Dmoduleobject.c372 PyModule_ExecDef(PyObject *module, PyModuleDef *def) in PyModule_ExecDef() function
/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/PC/
Dpython3dll.c370 EXPORT_FUNC(PyModule_ExecDef)
/third_party/python/Doc/data/
Dstable_abi.dat394 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.c1997 return PyModule_ExecDef(mod, def); in exec_builtin_or_dynamic()
/third_party/python/Misc/
Dstable_abi.txt1884 function PyModule_ExecDef
/third_party/python/Doc/whatsnew/
D3.5.rst2202 and :c:func:`PyModule_ExecDef` functions introduced by :pep:`489` --