Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dmodsupport.h127 PyAPI_FUNC(int) PyModule_ExecDef(PyObject *module, PyModuleDef *def);
/external/python/cpython3/Doc/c-api/
Dmodule.rst356 ``PyModule_ExecDef`` must be called to fully initialize a module.
380 .. c:function:: int PyModule_ExecDef(PyObject *module, PyModuleDef *def)
/external/python/cpython3/PC/
Dpython3.def367 PyModule_ExecDef=python37.PyModule_ExecDef
/external/python/cpython3/Objects/
Dmoduleobject.c379 PyModule_ExecDef(PyObject *module, PyModuleDef *def) in PyModule_ExecDef() function
/external/python/cpython3/Doc/data/
Drefcounts.dat1337 PyModule_ExecDef:int:::
1338 PyModule_ExecDef:PyObject*:module:0:
1339 PyModule_ExecDef:PyModuleDef*:def::
/external/python/cpython3/Python/
Dimport.c2106 return PyModule_ExecDef(mod, def); in exec_builtin_or_dynamic()
/external/python/cpython3/Doc/whatsnew/
D3.5.rst2202 and :c:func:`PyModule_ExecDef` functions introduced by :pep:`489` --