Home
last modified time | relevance | path

Searched refs:PyException_SetTraceback (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Python/
Derrors.c534 PyException_SetTraceback(val, tb); in _PyErr_ChainExceptions()
589 PyException_SetTraceback(val2, tb2); in _PyErr_ChainStackItem()
613 PyException_SetTraceback(val, tb); in _PyErr_FormatVFromCause()
1483 if (PyException_SetTraceback(exc_value, exc_tb) < 0) { in _PyErr_WriteUnraisableMsg()
Dpythonrun.c797 PyException_SetTraceback(v, tb); in _PyErr_PrintEx()
1120 PyException_SetTraceback(value, tb); in _PyErr_Display()
Dpylifecycle.c2455 PyException_SetTraceback(v, tb); in _Py_FatalError_PrintExc()
Dceval.c4489 PyException_SetTraceback(val, tb); in _PyEval_EvalFrameDefault()
4491 PyException_SetTraceback(val, Py_None); in _PyEval_EvalFrameDefault()
/third_party/python/Include/
Dpyerrors.h39 PyAPI_FUNC(int) PyException_SetTraceback(PyObject *, PyObject *);
/third_party/python/Objects/
Dexceptions.c168 if (PyException_SetTraceback(self, tb)) in BaseException_with_traceback()
330 PyException_SetTraceback(PyObject *self, PyObject *tb) in PyException_SetTraceback() function
3013 PyException_SetTraceback(val, tb); in _PyErr_TrySetFromCause()
/third_party/python/Doc/data/
Dstable_abi.dat262 function,PyException_SetTraceback,3.2,
Drefcounts.dat848 PyException_SetTraceback:int:::
849 PyException_SetTraceback:PyObject*:ex:0:
850 PyException_SetTraceback:PyObject*:tb:+1:
/third_party/python/PC/
Dpython3dll.c257 EXPORT_FUNC(PyException_SetTraceback)
/third_party/python/Doc/c-api/
Dexceptions.rst458 PyException_SetTraceback(val, tb);
628 .. c:function:: int PyException_SetTraceback(PyObject *ex, PyObject *tb)
/third_party/python/Misc/
Dstable_abi.txt718 function PyException_SetTraceback
/third_party/python/Modules/
D_asynciomodule.c2713 PyException_SetTraceback(ev, tb); in task_step_impl()
/third_party/python/Misc/NEWS.d/
D3.8.0b1.rst191 :c:func:`PyException_SetTraceback` to normalize the exception value. Ignore