Searched refs:BaseException_init (Results 1 – 1 of 1) sorted by relevance
/external/python/cpython3/Objects/ |
D | exceptions.c | 72 BaseException_init(PyBaseExceptionObject *self, PyObject *args, PyObject *kwds) in BaseException_init() function 486 (initproc)BaseException_init, /* tp_init */ 509 (initproc)BaseException_init, 0, BaseException_new,\ 588 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in StopIteration_init() 642 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in SystemExit_init() 838 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) { in BaseExceptionGroup_init() 1535 if (BaseException_init((PyBaseExceptionObject *)self, args, NULL) == -1) in ImportError_init() 2204 if (BaseException_init((PyBaseExceptionObject *)self, args, NULL) == -1) { in NameError_init() 2278 if (BaseException_init((PyBaseExceptionObject *)self, args, NULL) == -1) { in AttributeError_init() 2392 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in SyntaxError_init() [all …]
|