Home
last modified time | relevance | path

Searched refs:PyState_FindModule (Results 1 – 14 of 14) sorted by relevance

/third_party/python/Include/
Dpystate.h56 PyAPI_FUNC(PyObject*) PyState_FindModule(struct PyModuleDef*);
/third_party/python/Doc/c-api/
Dmodule.rst591 .. c:function:: PyObject* PyState_FindModule(PyModuleDef *def)
601 the module object to be accessible via :c:func:`PyState_FindModule`.
608 subsequently calls ``PyState_FindModule``.
/third_party/python/Modules/_io/
D_iomodule.c626 PyObject *mod = PyState_FindModule(&_PyIO_Module); in _PyIO_get_module_state()
/third_party/python/Modules/
D_testmultiphase.c310 mod = PyState_FindModule(def); in call_state_registration_func()
Dreadline.c141 #define readlinestate_global ((readlinestate *)PyModule_GetState(PyState_FindModule(&readlinemodule…
D_elementtree.c116 ((elementtreestate *) PyModule_GetState(PyState_FindModule(&elementtreemodule)))
4388 m = PyState_FindModule(&elementtreemodule); in PyInit__elementtree()
D_pickle.c194 return _Pickle_GetState(PyState_FindModule(&_picklemodule)); in _Pickle_GetGlobalState()
7957 m = PyState_FindModule(&_picklemodule); in PyInit__pickle()
D_testcapimodule.c6791 m = PyState_FindModule(&_testcapimodule); in heapctypesubclasswithfinalizer_finalize()
/third_party/python/PC/
Dpython3dll.c524 EXPORT_FUNC(PyState_FindModule)
/third_party/python/Doc/data/
Dstable_abi.dat564 function,PyState_FindModule,3.2,
Drefcounts.dat2086 PyState_FindModule:PyObject*::0:
2087 PyState_FindModule:PyModuleDef*:def::
/third_party/python/Python/
Dpystate.c700 PyState_FindModule(struct PyModuleDef* module) in PyState_FindModule() function
/third_party/python/Misc/
Dstable_abi.txt1203 function PyState_FindModule
DHISTORY6630 - Issue #15726: Fix incorrect bounds checking in PyState_FindModule. Patch by
7403 - Issue #15081: Document PyState_FindModule.