Home
last modified time | relevance | path

Searched refs:PyExceptionInstance_Class (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Python/
Dcodecs.c671 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_StrictErrors()
1160 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_SurrogatePassErrors()
1178 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_SurrogatePassErrors()
1239 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_SurrogatePassErrors()
1275 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_SurrogatePassErrors()
1318 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_SurrogateEscapeErrors()
1352 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_SurrogateEscapeErrors()
Derrors.c205 err = PyExceptionInstance_Class(err); in PyErr_GivenExceptionMatches()
262 inclass = PyExceptionInstance_Class(value); in PyErr_NormalizeException()
Dceval.c4028 type = PyExceptionInstance_Class(exc); in do_raise()
/external/python/cpython2/Python/
Derrors.c106 err = PyExceptionInstance_Class(err); in PyErr_GivenExceptionMatches()
167 inclass = PyExceptionInstance_Class(value); in PyErr_NormalizeException()
Dcodecs.c619 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_StrictErrors()
Dceval.c3891 type = PyExceptionInstance_Class(type); in do_raise()
/external/python/cpython2/Objects/
Dgenobject.c256 typ = PyExceptionInstance_Class(typ); in gen_throw()
/external/python/cpython2/Include/
Dpyerrors.h111 #define PyExceptionInstance_Class(x) \ macro
/external/python/cpython3/Include/
Dpyerrors.h146 #define PyExceptionInstance_Class(x) ((PyObject*)((x)->ob_type)) macro
/external/python/cpython3/Modules/
D_asynciomodule.c800 PyErr_SetObject(PyExceptionInstance_Class(result), result); in _asyncio_Future_result_impl()
1587 type = PyExceptionInstance_Class(type); in FutureIter_throw()
/external/python/cpython3/Objects/
Dgenobject.c495 typ = PyExceptionInstance_Class(typ); in _gen_throw()