Home
last modified time | relevance | path

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

/third_party/python/Include/
Dpyerrors.h23 PyAPI_FUNC(void) PyErr_SetExcInfo(PyObject *, PyObject *, PyObject *);
/third_party/python/Doc/data/
Drefcounts.dat669 PyErr_SetExcInfo:void:::
670 PyErr_SetExcInfo:PyObject*:type:0:
671 PyErr_SetExcInfo:PyObject*:value:0:
672 PyErr_SetExcInfo:PyObject*:traceback:0:
Dstable_abi.dat147 function,PyErr_SetExcInfo,3.7,
/third_party/python/PC/
Dpython3dll.c211 EXPORT_FUNC(PyErr_SetExcInfo)
/third_party/python/Python/
Derrors.c490 PyErr_SetExcInfo(PyObject *p_type, PyObject *p_value, PyObject *p_traceback) in PyErr_SetExcInfo() function
/third_party/python/Doc/c-api/
Dexceptions.rst473 state temporarily. Use :c:func:`PyErr_SetExcInfo` to restore or clear the
479 .. c:function:: void PyErr_SetExcInfo(PyObject *type, PyObject *value, PyObject *traceback)
/third_party/python/Misc/
Dstable_abi.txt1826 function PyErr_SetExcInfo
DHISTORY7972 - Issue #14098: New functions PyErr_GetExcInfo and PyErr_SetExcInfo.
/third_party/python/Modules/
D_testcapimodule.c2430 PyErr_SetExcInfo(new_type, new_value, new_tb); in test_set_exc_info()