Searched refs:BaseException_new (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Objects/ |
D | exceptions.c | 30 BaseException_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in BaseException_new() function 409 BaseException_new, /* tp_new */ 430 (initproc)BaseException_init, 0, BaseException_new,\ 445 (initproc)EXCSTORE ## _init, 0, BaseException_new,\ 461 (initproc)EXCSTORE ## _init, 0, BaseException_new,\ 1687 (initproc)UnicodeEncodeError_init, 0, BaseException_new, 1771 (initproc)UnicodeDecodeError_init, 0, BaseException_new, 1868 (initproc)UnicodeTranslateError_init, 0, BaseException_new, 2177 PyExc_MemoryErrorInst = BaseException_new(&_PyExc_MemoryError, NULL, NULL); in _PyExc_Init() 2181 PyExc_RecursionErrorInst = BaseException_new(&_PyExc_RuntimeError, NULL, NULL); in _PyExc_Init()
|
/external/python/cpython3/Objects/ |
D | exceptions.c | 34 BaseException_new(PyTypeObject *type, PyObject *args, PyObject *kwds) in BaseException_new() function 396 BaseException_new, /* tp_new */ 417 (initproc)BaseException_init, 0, BaseException_new,\ 1953 (initproc)UnicodeEncodeError_init, 0, BaseException_new, 2069 (initproc)UnicodeDecodeError_init, 0, BaseException_new, 2166 (initproc)UnicodeTranslateError_init, 0, BaseException_new, 2255 return BaseException_new(type, args, kwds); in MemoryError_new() 2257 return BaseException_new(type, args, kwds); in MemoryError_new() 2743 caught_type->tp_new != BaseException_new || in _PyErr_TrySetFromCause()
|