Searched refs:PyErr_SetExcInfo (Results 1 – 7 of 7) sorted by relevance
21 PyAPI_FUNC(void) PyErr_SetExcInfo(PyObject *, PyObject *, PyObject *);
142 PyErr_SetExcInfo=python38.PyErr_SetExcInfo
669 PyErr_SetExcInfo:void:::670 PyErr_SetExcInfo:PyObject*:type:0:671 PyErr_SetExcInfo:PyObject*:value:0:672 PyErr_SetExcInfo:PyObject*:traceback:0:
449 PyErr_SetExcInfo(PyObject *p_type, PyObject *p_value, PyObject *p_traceback) in PyErr_SetExcInfo() function
471 state temporarily. Use :c:func:`PyErr_SetExcInfo` to restore or clear the477 .. c:function:: void PyErr_SetExcInfo(PyObject *type, PyObject *value, PyObject *traceback)
2228 PyErr_SetExcInfo(new_type, new_value, new_tb); in test_set_exc_info()
7972 - Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo.