Home
last modified time | relevance | path

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

/third_party/python/Include/
Dmodsupport.h153 PyAPI_FUNC(int) PyModule_ExecDef(PyObject *module, PyModuleDef *def);
/third_party/python/Objects/
Dmoduleobject.c364 PyModule_ExecDef(PyObject *module, PyModuleDef *def) in PyModule_ExecDef() function
/third_party/python/PC/
Dpython3.def372 PyModule_ExecDef=python39.PyModule_ExecDef
/third_party/python/Doc/c-api/
Dmodule.rst381 ``PyModule_ExecDef`` must be called to fully initialize a module.
405 .. c:function:: int PyModule_ExecDef(PyObject *module, PyModuleDef *def)
/third_party/python/Doc/data/
Drefcounts.dat1365 PyModule_ExecDef:int:::
1366 PyModule_ExecDef:PyObject*:module:0:
1367 PyModule_ExecDef:PyModuleDef*:def::
/third_party/python/Python/
Dimport.c2245 return PyModule_ExecDef(mod, def); in exec_builtin_or_dynamic()
/third_party/python/Doc/whatsnew/
D3.5.rst2202 and :c:func:`PyModule_ExecDef` functions introduced by :pep:`489` --