Searched refs:PyErr_GivenExceptionMatches (Results 1 – 25 of 25) sorted by relevance
/external/python/cpython2/Python/ |
D | errors.c | 85 PyErr_GivenExceptionMatches(PyObject *err, PyObject *exc) in PyErr_GivenExceptionMatches() function 96 if (PyErr_GivenExceptionMatches( in PyErr_GivenExceptionMatches() 137 return PyErr_GivenExceptionMatches(PyErr_Occurred(), exc); in PyErr_ExceptionMatches()
|
D | mactoolboxglue.c | 141 if (exc && PyErr_GivenExceptionMatches(exc, in PyMac_GetFullPathname()
|
D | ceval.c | 4855 res = PyErr_GivenExceptionMatches(v, w); in cmp_outcome()
|
/external/python/cpython3/Python/ |
D | errors.c | 170 PyErr_GivenExceptionMatches(PyObject *err, PyObject *exc) in PyErr_GivenExceptionMatches() function 181 if (PyErr_GivenExceptionMatches( in PyErr_GivenExceptionMatches() 216 return PyErr_GivenExceptionMatches(PyErr_Occurred(), exc); in PyErr_ExceptionMatches()
|
D | ceval.c | 5147 res = PyErr_GivenExceptionMatches(v, w); in cmp_outcome()
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 140 PyErr_GivenExceptionMatches
|
/external/python/cpython2/Include/ |
D | pyerrors.h | 91 PyAPI_FUNC(int) PyErr_GivenExceptionMatches(PyObject *, PyObject *);
|
/external/python/cpython2/Modules/_io/ |
D | _iomodule.c | 565 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) in PyNumber_AsOff_t()
|
D | bufferedio.c | 610 if (v == NULL || !PyErr_GivenExceptionMatches(v, PyExc_BlockingIOError)) { in _buffered_check_blocking_error()
|
/external/python/cpython3/Modules/_io/ |
D | _iomodule.c | 515 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) in PyNumber_AsOff_t()
|
D | bufferedio.c | 682 if (v == NULL || !PyErr_GivenExceptionMatches(v, PyExc_BlockingIOError)) { in _buffered_check_blocking_error()
|
/external/python/cpython3/Include/ |
D | pyerrors.h | 114 PyAPI_FUNC(int) PyErr_GivenExceptionMatches(PyObject *, PyObject *);
|
/external/python/cpython3/Objects/ |
D | bytes_methods.c | 432 if (err && !PyErr_GivenExceptionMatches(err, PyExc_OverflowError)) { in parse_args_finds_byte()
|
D | genobject.c | 426 if (PyErr_GivenExceptionMatches(typ, PyExc_GeneratorExit) && in _gen_throw()
|
D | abstract.c | 1269 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError)) in PyNumber_AsSsize_t()
|
/external/python/cpython3/PC/ |
D | python3.def | 127 PyErr_GivenExceptionMatches=python36.PyErr_GivenExceptionMatches
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 275 PyErr_GivenExceptionMatches:int::: 276 PyErr_GivenExceptionMatches:PyObject*:given:0: 277 PyErr_GivenExceptionMatches:PyObject*:exc:0:
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 280 PyErr_GivenExceptionMatches:int::: 281 PyErr_GivenExceptionMatches:PyObject*:given:0: 282 PyErr_GivenExceptionMatches:PyObject*:exc:0:
|
/external/python/cpython2/Doc/c-api/ |
D | exceptions.rst | 78 Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This 83 .. c:function:: int PyErr_GivenExceptionMatches(PyObject *given, PyObject *exc)
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 894 "PyErr_GivenExceptionMatches"
|
/external/python/cpython3/Doc/c-api/ |
D | exceptions.rst | 373 Equivalent to ``PyErr_GivenExceptionMatches(PyErr_Occurred(), exc)``. This 378 .. c:function:: int PyErr_GivenExceptionMatches(PyObject *given, PyObject *exc)
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 2022 if (!PyErr_GivenExceptionMatches(et, PyExc_Exception)) { in task_step_impl()
|
/external/python/cpython2/Objects/ |
D | abstract.c | 1536 if (!PyErr_GivenExceptionMatches(runerr, PyExc_OverflowError))
|
/external/python/cpython2/Misc/ |
D | HISTORY | 12776 - int PyErr_GivenExceptionMatches(obj1, obj2) 12783 Higher level wrapper around PyErr_GivenExceptionMatches() which uses
|
/external/python/cpython3/Misc/ |
D | HISTORY | 30155 - int PyErr_GivenExceptionMatches(obj1, obj2) 30162 Higher level wrapper around PyErr_GivenExceptionMatches() which uses
|