Home
last modified time | relevance | path

Searched refs:PyErr_GetExcInfo (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Include/
Dpyerrors.h91 PyAPI_FUNC(void) PyErr_GetExcInfo(PyObject **, PyObject **, PyObject **);
/external/python/cpython3/PC/
Dpython3.def126 PyErr_GetExcInfo=python36.PyErr_GetExcInfo
/external/python/cpython3/Python/
Derrors.c345 PyErr_GetExcInfo(PyObject **p_type, PyObject **p_value, PyObject **p_traceback) in PyErr_GetExcInfo() function
/external/python/cpython3/Doc/c-api/
Dexceptions.rst446 .. c:function:: void PyErr_GetExcInfo(PyObject **ptype, PyObject **pvalue, PyObject **ptraceback)
475 state temporarily. Use :c:func:`PyErr_GetExcInfo` to read the exception
/external/python/cpython3/Modules/
D_testcapimodule.c2173 PyErr_GetExcInfo(&type, &value, &tb); in test_set_exc_info()
/external/python/cpython3/Misc/
DHISTORY7972 - Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo.