Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_testmultiphase.c240 {Py_mod_exec, execfunc},
547 {Py_mod_exec, execfunc},
567 {Py_mod_exec, execfunc_err},
588 {Py_mod_exec, execfunc_raise},
609 {Py_mod_exec, execfunc_unreported_exception},
647 {Py_mod_exec, execfunc_with_bad_traverse},
Dxxlimited.c282 {Py_mod_exec, xx_modexec},
Dxxmodule.c386 {Py_mod_exec, xx_exec},
Dxxsubtype.c293 {Py_mod_exec, xxsubtype_exec},
Datexitmodule.c334 {Py_mod_exec, atexit_exec},
Darraymodule.c3061 {Py_mod_exec, array_modexec},
/external/python/cpython3/Include/
Dmoduleobject.h66 #define Py_mod_exec 2 macro
/external/python/cpython3/PC/
D_testconsole.c29 {Py_mod_exec, execfunc},
/external/python/cpython3/Doc/c-api/
Dmodule.rst201 and before the :c:member:`Py_mod_exec` function is executed.
208 and before the :c:member:`Py_mod_exec` function is executed.
215 and before the :c:member:`Py_mod_exec` function is executed.
336 .. c:var:: Py_mod_exec
345 If multiple ``Py_mod_exec`` slots are specified, they are processed in the
382 Process any execution slots (:c:data:`Py_mod_exec`) given in *def*.
/external/python/cpython3/Objects/
Dmoduleobject.c413 case Py_mod_exec: in PyModule_ExecDef()