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.c287 {Py_mod_create, createfunc_nonmodule},
490 {Py_mod_create, createfunc_null},
511 {Py_mod_create, createfunc_raise},
532 {Py_mod_create, createfunc_unreported_exception},
546 {Py_mod_create, createfunc_nonmodule},
/external/python/cpython3/Include/
Dmoduleobject.h65 #define Py_mod_create 1 macro
/external/python/cpython3/Doc/c-api/
Dmodule.rst304 .. c:var:: Py_mod_create
320 Multiple ``Py_mod_create`` slots may not be specified in one module
323 If ``Py_mod_create`` is not specified, the import machinery will create
334 ``m_free``; non-zero ``m_size``; or slots other than ``Py_mod_create``.
/external/python/cpython3/Objects/
Dmoduleobject.c279 if (cur_slot->slot == Py_mod_create) { in PyModule_FromDefAndSpec2()
410 case Py_mod_create: in PyModule_ExecDef()