Home
last modified time | relevance | path

Searched refs:PyErr_SetExcInfo (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Include/
Dpyerrors.h92 PyAPI_FUNC(void) PyErr_SetExcInfo(PyObject *, PyObject *, PyObject *);
/external/python/cpython3/PC/
Dpython3.def142 PyErr_SetExcInfo=python36.PyErr_SetExcInfo
/external/python/cpython3/Python/
Derrors.c359 PyErr_SetExcInfo(PyObject *p_type, PyObject *p_value, PyObject *p_traceback) in PyErr_SetExcInfo() function
/external/python/cpython3/Doc/c-api/
Dexceptions.rst457 state temporarily. Use :c:func:`PyErr_SetExcInfo` to restore or clear the
463 .. c:function:: void PyErr_SetExcInfo(PyObject *type, PyObject *value, PyObject *traceback)
/external/python/cpython3/Modules/
D_testcapimodule.c2178 PyErr_SetExcInfo(new_type, new_value, new_tb); in test_set_exc_info()
/external/python/cpython3/Misc/
DHISTORY7972 - Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo.