Searched refs:PyErr_GivenExceptionMatches (Results 1 – 15 of 15) sorted by relevance
/third_party/python/Python/ |
D | errors.c | 259 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()
|
D | ceval.c | 2703 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/ |
D | pyerrors.h | 34 PyAPI_FUNC(int) PyErr_GivenExceptionMatches(PyObject *, PyObject *);
|
/third_party/python/Modules/_io/ |
D | _iomodule.c | 586 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) in PyNumber_AsOff_t()
|
D | bufferedio.c | 657 if (v == NULL || !PyErr_GivenExceptionMatches(v, PyExc_BlockingIOError)) { in _buffered_check_blocking_error()
|
/third_party/python/PC/ |
D | python3dll.c | 196 EXPORT_FUNC(PyErr_GivenExceptionMatches)
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 132 function,PyErr_GivenExceptionMatches,3.2,
|
D | refcounts.dat | 609 PyErr_GivenExceptionMatches:int::: 610 PyErr_GivenExceptionMatches:PyObject*:given:0: 611 PyErr_GivenExceptionMatches:PyObject*:exc:0:
|
/third_party/python/Modules/ |
D | _asynciomodule.c | 2726 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/ |
D | exceptions.rst | 389 Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This 394 .. c:function:: int PyErr_GivenExceptionMatches(PyObject *given, PyObject *exc)
|
/third_party/python/Objects/ |
D | genobject.c | 419 if (PyErr_GivenExceptionMatches(typ, PyExc_GeneratorExit) && in _gen_throw()
|
D | object.c | 899 if (PyErr_GivenExceptionMatches(value, PyExc_AttributeError) && in set_attribute_error_context()
|
D | abstract.c | 1498 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) { in PyNumber_AsSsize_t()
|
/third_party/python/Misc/ |
D | stable_abi.txt | 528 function PyErr_GivenExceptionMatches
|
D | HISTORY | 30155 - int PyErr_GivenExceptionMatches(obj1, obj2) 30162 Higher level wrapper around PyErr_GivenExceptionMatches() which uses
|