Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dpyerrors.h93 PyAPI_FUNC(void) PyErr_SetExcInfo(PyObject *, PyObject *, PyObject *);
/external/python/cpython3/PC/
Dpython3.def142 PyErr_SetExcInfo=python37.PyErr_SetExcInfo
/external/python/cpython3/Doc/data/
Drefcounts.dat641 PyErr_SetExcInfo:void:::
642 PyErr_SetExcInfo:PyObject*:type:0:
643 PyErr_SetExcInfo:PyObject*:value:0:
644 PyErr_SetExcInfo:PyObject*:traceback:0:
/external/python/cpython3/Python/
Derrors.c371 PyErr_SetExcInfo(PyObject *p_type, PyObject *p_value, PyObject *p_traceback) in PyErr_SetExcInfo() function
/external/python/cpython3/Doc/c-api/
Dexceptions.rst466 state temporarily. Use :c:func:`PyErr_SetExcInfo` to restore or clear the
472 .. c:function:: void PyErr_SetExcInfo(PyObject *type, PyObject *value, PyObject *traceback)
/external/python/cpython3/Modules/
D_testcapimodule.c2197 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.