Lines Matching refs:BaseException_init
67 BaseException_init(PyBaseExceptionObject *self, PyObject *args, PyObject *kwds) in BaseException_init() function
418 (initproc)BaseException_init, /* tp_init */
441 (initproc)BaseException_init, 0, BaseException_new,\
516 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in StopIteration_init()
579 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in SystemExit_init()
647 if (BaseException_init((PyBaseExceptionObject *)self, args, NULL) == -1) in ImportError_init()
1336 if (BaseException_init((PyBaseExceptionObject *)self, args, NULL) == -1) { in NameError_init()
1411 if (BaseException_init((PyBaseExceptionObject *)self, args, NULL) == -1) { in AttributeError_init()
1484 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in SyntaxError_init()
2029 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in UnicodeEncodeError_init()
2136 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in UnicodeDecodeError_init()
2251 if (BaseException_init((PyBaseExceptionObject *)self, args, kwds) == -1) in UnicodeTranslateError_init()
2505 (initproc)BaseException_init, 0, MemoryError_new
2964 if (caught_type->tp_init != (initproc)BaseException_init || in _PyErr_TrySetFromCause()