Home
last modified time | relevance | path

Searched refs:Py_mod_create (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Modules/
D_testmultiphase.c282 {Py_mod_create, createfunc_nonmodule},
485 {Py_mod_create, createfunc_null},
506 {Py_mod_create, createfunc_raise},
527 {Py_mod_create, createfunc_unreported_exception},
541 {Py_mod_create, createfunc_nonmodule},
/external/python/cpython3/Include/
Dmoduleobject.h65 #define Py_mod_create 1 macro
/external/python/cpython3/Doc/c-api/
Dmodule.rst298 .. c:var:: Py_mod_create
314 Multiple ``Py_mod_create`` slots may not be specified in one module
317 If ``Py_mod_create`` is not specified, the import machinery will create
328 ``m_free``; non-zero ``m_size``; or slots other than ``Py_mod_create``.
/external/python/cpython3/Objects/
Dmoduleobject.c261 if (cur_slot->slot == Py_mod_create) { in PyModule_FromDefAndSpec2()
382 case Py_mod_create: in PyModule_ExecDef()