Searched refs:PyErr_GetExcInfo (Results 1 – 7 of 7) sorted by relevance
92 PyAPI_FUNC(void) PyErr_GetExcInfo(PyObject **, PyObject **, PyObject **);
126 PyErr_GetExcInfo=python37.PyErr_GetExcInfo
576 PyErr_GetExcInfo:void:::577 PyErr_GetExcInfo:PyObject**:ptype:+1:578 PyErr_GetExcInfo:PyObject**:pvalue:+1:579 PyErr_GetExcInfo:PyObject**:ptraceback:+1:
355 PyErr_GetExcInfo(PyObject **p_type, PyObject **p_value, PyObject **p_traceback) in PyErr_GetExcInfo() function
455 .. c:function:: void PyErr_GetExcInfo(PyObject **ptype, PyObject **pvalue, PyObject **ptraceback)484 state temporarily. Use :c:func:`PyErr_GetExcInfo` to read the exception
2192 PyErr_GetExcInfo(&type, &value, &tb); in test_set_exc_info()
7972 - Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo.