Searched refs:new_tb (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/python/autograph/core/ |
D | errors.py | 80 new_tb = [] 86 new_tb.append(origin.as_frame()) 88 new_tb.append(frame) 89 return new_tb
|
/external/python/cpython3/Lib/test/ |
D | test_raise.py | 267 new_tb = get_tb() 268 tb.tb_next = new_tb 269 self.assertIs(tb.tb_next, new_tb)
|
/external/libchrome/third_party/jinja2/ |
D | debug.py | 292 new_tb = exc_info[2].tb_next 295 return exc_info[:2] + (new_tb,)
|
/external/python/cpython3/Objects/ |
D | exceptions.c | 2725 PyObject *new_exc, *new_val, *new_tb; in _PyErr_TrySetFromCause() local 2812 PyErr_Fetch(&new_exc, &new_val, &new_tb); in _PyErr_TrySetFromCause() 2813 PyErr_NormalizeException(&new_exc, &new_val, &new_tb); in _PyErr_TrySetFromCause() 2815 PyErr_Restore(new_exc, new_val, new_tb); in _PyErr_TrySetFromCause()
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 2186 PyObject *new_type, *new_value, *new_tb; in test_set_exc_info() local 2189 &new_type, &new_value, &new_tb)) in test_set_exc_info() 2196 Py_INCREF(new_tb); in test_set_exc_info() 2197 PyErr_SetExcInfo(new_type, new_value, new_tb); in test_set_exc_info()
|