Home
last modified time | relevance | path

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

/third_party/python/Python/
Dcodecs.c668 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_StrictErrors()
1156 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_SurrogatePassErrors()
1174 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_SurrogatePassErrors()
1235 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_SurrogatePassErrors()
1271 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_SurrogatePassErrors()
1314 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_SurrogateEscapeErrors()
1348 PyErr_SetObject(PyExceptionInstance_Class(exc), exc); in PyCodec_SurrogateEscapeErrors()
Derrors.c280 err = PyExceptionInstance_Class(err); in PyErr_GivenExceptionMatches()
348 inclass = PyExceptionInstance_Class(value); in _PyErr_NormalizeException()
Dceval.c5215 type = PyExceptionInstance_Class(exc); in do_raise()
/third_party/python/Include/
Dpyerrors.h61 #define PyExceptionInstance_Class(x) ((PyObject*)Py_TYPE(x)) macro
/third_party/python/Modules/
D_asynciomodule.c849 PyErr_SetObject(PyExceptionInstance_Class(result), result); in _asyncio_Future_result_impl()
1706 type = PyExceptionInstance_Class(type); in FutureIter_throw()
/third_party/python/Objects/
Dgenobject.c523 typ = PyExceptionInstance_Class(typ); in _gen_throw()