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