Searched refs:PyErr_GetExcInfo (Results 1 – 7 of 7) sorted by relevance
20 PyAPI_FUNC(void) PyErr_GetExcInfo(PyObject **, PyObject **, PyObject **);
126 PyErr_GetExcInfo=python38.PyErr_GetExcInfo
604 PyErr_GetExcInfo:void:::605 PyErr_GetExcInfo:PyObject**:ptype:+1:606 PyErr_GetExcInfo:PyObject**:pvalue:+1:607 PyErr_GetExcInfo:PyObject**:ptraceback:+1:
433 PyErr_GetExcInfo(PyObject **p_type, PyObject **p_value, PyObject **p_traceback) in PyErr_GetExcInfo() function
460 .. c:function:: void PyErr_GetExcInfo(PyObject **ptype, PyObject **pvalue, PyObject **ptraceback)489 state temporarily. Use :c:func:`PyErr_GetExcInfo` to read the exception
2223 PyErr_GetExcInfo(&type, &value, &tb); in test_set_exc_info()
7972 - Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo.