Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dexceptions.c2793 PyTypeObject *caught_type; in _PyErr_TrySetFromCause() local
2802 caught_type = (PyTypeObject *)exc; in _PyErr_TrySetFromCause()
2806 caught_type_size = caught_type->tp_basicsize; in _PyErr_TrySetFromCause()
2810 (PyType_SUPPORTS_WEAKREFS(caught_type) && in _PyErr_TrySetFromCause()
2814 if (caught_type->tp_init != (initproc)BaseException_init || in _PyErr_TrySetFromCause()
2815 caught_type->tp_new != BaseException_new || in _PyErr_TrySetFromCause()
2817 caught_type->tp_itemsize != _PyExc_BaseException.tp_itemsize) { in _PyErr_TrySetFromCause()