Home
last modified time | relevance | path

Searched refs:PyState_AddModule (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython3/Include/
Dpystate.h45 PyAPI_FUNC(int) PyState_AddModule(PyObject*, struct PyModuleDef*);
/external/python/cpython3/Doc/c-api/
Dmodule.rst478 :c:func:`PyState_AddModule` beforehand. In case the corresponding module object is not
481 .. c:function:: int PyState_AddModule(PyObject *module, PyModuleDef *def)
488 Python calls ``PyState_AddModule`` automatically after importing a module,
/external/python/cpython3/Modules/
D_testmultiphase.c148 ret = PyState_AddModule(mod, def); in call_state_registration_func()
D_testcapimodule.c6332 PyState_AddModule(m, &_testcapimodule); in PyInit__testcapi()
/external/python/cpython3/PC/
Dpython3.def545 PyState_AddModule=python38.PyState_AddModule
/external/python/cpython3/Doc/data/
Drefcounts.dat2101 PyState_AddModule:int:::
2102 PyState_AddModule:PyObject*:module:+1:
2103 PyState_AddModule:PyModuleDef*:def::
/external/python/cpython3/Python/
Dpystate.c691 PyState_AddModule(PyObject* module, struct PyModuleDef* def) in PyState_AddModule() function
/external/python/cpython3/Misc/NEWS.d/
D3.8.0rc1.rst94 Fix an off-by-one error in PyState_AddModule that could cause out-of-bounds
/external/python/cpython3/Misc/
DHISTORY7373 - Issue #15042: Add PyState_AddModule and PyState_RemoveModule. Add version