Home
last modified time | relevance | path

Searched refs:PyErr_GivenExceptionMatches (Results 1 – 15 of 15) sorted by relevance

/third_party/python/Python/
Derrors.c259 PyErr_GivenExceptionMatches(PyObject *err, PyObject *exc) in PyErr_GivenExceptionMatches() function
270 if (PyErr_GivenExceptionMatches( in PyErr_GivenExceptionMatches()
293 return PyErr_GivenExceptionMatches(_PyErr_Occurred(tstate), exc); in _PyErr_ExceptionMatches()
409 if (PyErr_GivenExceptionMatches(*exc, PyExc_MemoryError)) { in _PyErr_NormalizeException()
Dceval.c2703 if (PyErr_GivenExceptionMatches(exc, PyExc_StopAsyncIteration)) { in _PyEval_EvalFrameDefault()
3675 int res = PyErr_GivenExceptionMatches(left, right); in _PyEval_EvalFrameDefault()
6263 if (PyErr_GivenExceptionMatches(value, PyExc_NameError)) { in format_exc_check_arg()
/third_party/python/Include/
Dpyerrors.h34 PyAPI_FUNC(int) PyErr_GivenExceptionMatches(PyObject *, PyObject *);
/third_party/python/Modules/_io/
D_iomodule.c586 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) in PyNumber_AsOff_t()
Dbufferedio.c657 if (v == NULL || !PyErr_GivenExceptionMatches(v, PyExc_BlockingIOError)) { in _buffered_check_blocking_error()
/third_party/python/PC/
Dpython3dll.c196 EXPORT_FUNC(PyErr_GivenExceptionMatches)
/third_party/python/Doc/data/
Dstable_abi.dat132 function,PyErr_GivenExceptionMatches,3.2,
Drefcounts.dat609 PyErr_GivenExceptionMatches:int:::
610 PyErr_GivenExceptionMatches:PyObject*:given:0:
611 PyErr_GivenExceptionMatches:PyObject*:exc:0:
/third_party/python/Modules/
D_asynciomodule.c2726 if (PyErr_GivenExceptionMatches(et, PyExc_KeyboardInterrupt) || in task_step_impl()
2727 PyErr_GivenExceptionMatches(et, PyExc_SystemExit)) in task_step_impl()
/third_party/python/Doc/c-api/
Dexceptions.rst389 Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This
394 .. c:function:: int PyErr_GivenExceptionMatches(PyObject *given, PyObject *exc)
/third_party/python/Objects/
Dgenobject.c419 if (PyErr_GivenExceptionMatches(typ, PyExc_GeneratorExit) && in _gen_throw()
Dobject.c899 if (PyErr_GivenExceptionMatches(value, PyExc_AttributeError) && in set_attribute_error_context()
Dabstract.c1498 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) { in PyNumber_AsSsize_t()
/third_party/python/Misc/
Dstable_abi.txt528 function PyErr_GivenExceptionMatches
DHISTORY30155 - int PyErr_GivenExceptionMatches(obj1, obj2)
30162 Higher level wrapper around PyErr_GivenExceptionMatches() which uses