Searched refs:PyErr_SetExcInfo (Results 1 – 7 of 7) sorted by relevance
93 PyAPI_FUNC(void) PyErr_SetExcInfo(PyObject *, PyObject *, PyObject *);
142 PyErr_SetExcInfo=python37.PyErr_SetExcInfo
641 PyErr_SetExcInfo:void:::642 PyErr_SetExcInfo:PyObject*:type:0:643 PyErr_SetExcInfo:PyObject*:value:0:644 PyErr_SetExcInfo:PyObject*:traceback:0:
371 PyErr_SetExcInfo(PyObject *p_type, PyObject *p_value, PyObject *p_traceback) in PyErr_SetExcInfo() function
466 state temporarily. Use :c:func:`PyErr_SetExcInfo` to restore or clear the472 .. c:function:: void PyErr_SetExcInfo(PyObject *type, PyObject *value, PyObject *traceback)
2197 PyErr_SetExcInfo(new_type, new_value, new_tb); in test_set_exc_info()
7972 - Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo.