Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dpystate.h53 PyAPI_FUNC(int) PyState_AddModule(PyObject*, struct PyModuleDef*);
/external/python/cpython3/Doc/c-api/
Dmodule.rst512 :c:func:`PyState_AddModule` beforehand. In case the corresponding module object is not
515 .. c:function:: int PyState_AddModule(PyObject *module, PyModuleDef *def)
522 Python calls ``PyState_AddModule`` automatically after importing a module,
/external/python/cpython3/Modules/
D_testmultiphase.c310 ret = PyState_AddModule(mod, def); in call_state_registration_func()
D_posixsubprocess.c1018 PyState_AddModule(m, &_posixsubprocessmodule); in PyInit__posixsubprocess()
Dzlibmodule.c1478 PyState_AddModule(m, &zlibmodule); in PyInit_zlib()
D_testcapimodule.c6957 PyState_AddModule(m, &_testcapimodule); in PyInit__testcapi()
/external/python/cpython3/PC/
Dpython3.def544 PyState_AddModule=python39.PyState_AddModule
/external/python/cpython3/Doc/data/
Drefcounts.dat2102 PyState_AddModule:int:::
2103 PyState_AddModule:PyObject*:module:+1:
2104 PyState_AddModule:PyModuleDef*:def::
/external/python/cpython3/Python/
Dpystate.c705 PyState_AddModule(PyObject* module, struct PyModuleDef* def) in PyState_AddModule() function
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst398 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