/external/python/jinja/src/jinja2/ |
D | debug.py | 36 tb = tb.tb_next 46 tb = tb.tb_next 58 tb = tb.tb_next 60 tb_next = None 64 tb_next = tb_set_next(tb, tb_next) 66 return exc_value.with_traceback(tb_next) 157 return sys.exc_info()[2].tb_next 206 def tb_set_next(tb, tb_next): argument 207 tb.tb_next = tb_next 217 def tb_set_next(tb, tb_next): argument [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_raise.py | 226 self.assertEqual(e.__traceback__.tb_next, tb) 242 self.assertIsInstance(tb.tb_next, types.TracebackType) 247 self.assertIs(tb.tb_next.tb_next, None) 251 del tb.tb_next 254 tb.tb_next = "asdf" 258 tb.tb_next = tb 261 tb.tb_next.tb_next = tb 264 tb.tb_next = None 265 self.assertIs(tb.tb_next, None) 268 tb.tb_next = new_tb [all …]
|
D | test_frame.py | 31 tb = tb.tb_next 151 tb = tb.tb_next 209 tb = tb.tb_next
|
/external/python/cpython3/Python/ |
D | traceback.c | 50 tb->tb_next = next; in tb_create_raw() 73 tb_new_impl(PyTypeObject *type, PyObject *tb_next, PyFrameObject *tb_frame, in tb_new_impl() argument 77 if (tb_next == Py_None) { in tb_new_impl() 78 tb_next = NULL; in tb_new_impl() 79 } else if (!PyTraceBack_Check(tb_next)) { in tb_new_impl() 82 Py_TYPE(tb_next)->tp_name); in tb_new_impl() 85 return tb_create_raw((PyTracebackObject *)tb_next, tb_frame, tb_lasti, in tb_new_impl() 99 PyObject* ret = (PyObject*)self->tb_next; in tb_next_get() 133 cursor = cursor->tb_next; in tb_next_set() 136 PyObject *old_next = (PyObject*)self->tb_next; in tb_next_set() [all …]
|
D | suggestions.c | 211 PyTracebackObject *next = traceback->tb_next; in offer_suggestions_for_name_error()
|
/external/python/cpython3/Python/clinic/ |
D | traceback.c.h | 12 tb_new_impl(PyTypeObject *type, PyObject *tb_next, PyFrameObject *tb_frame, 24 PyObject *tb_next; in tb_new() local 33 tb_next = fastargs[0]; in tb_new() 47 return_value = tb_new_impl(type, tb_next, tb_frame, tb_lasti, tb_lineno); in tb_new()
|
/external/libchrome/third_party/jinja2/ |
D | debug.py | 44 def tb_next(self): member in TracebackFrameProxy 164 tb = tb.tb_next 172 tb = tb.tb_next 177 next = tb.tb_next 292 new_tb = exc_info[2].tb_next 351 if tb.tb_next is not None: 352 old = _Traceback.from_address(id(tb.tb_next)) 355 obj.tb_next = ctypes.POINTER(_Traceback)() 359 obj.tb_next = ctypes.pointer(next)
|
/external/python/cpython2/Python/ |
D | traceback.c | 15 {"tb_next", T_OBJECT, OFF(tb_next), READONLY}, 27 Py_XDECREF(tb->tb_next); in tb_dealloc() 36 Py_VISIT(tb->tb_next); in tb_traverse() 44 Py_CLEAR(tb->tb_next); in tb_clear() 95 tb->tb_next = next; in newtracebackobject() 239 tb1 = tb1->tb_next; in tb_printinternal() 250 tb = tb->tb_next; in tb_printinternal()
|
/external/python/cpython3/Lib/unittest/ |
D | result.py | 203 tb = tb.tb_next 235 tb = tb.tb_next 237 prev.tb_next = None
|
/external/python/cpython3/Include/cpython/ |
D | traceback.h | 7 struct _traceback *tb_next; member
|
/external/python/cpython2/Include/ |
D | traceback.h | 14 struct _traceback *tb_next; member
|
/external/python/cpython3/Lib/ |
D | dis.py | 95 while tb.tb_next: tb = tb.tb_next 501 while tb.tb_next: 502 tb = tb.tb_next
|
D | code.py | 142 lines = traceback.format_exception(ei[0], ei[1], last_tb.tb_next)
|
D | traceback.py | 240 tb = tb.tb_next 330 tb = tb.tb_next
|
D | bdb.py | 536 t = t.tb_next 546 t = t.tb_next
|
/external/python/cpython2/Lib/idlelib/ |
D | StackViewer.py | 32 tb = tb.tb_next 35 tb = tb.tb_next
|
/external/python/cpython3/Lib/idlelib/ |
D | stackviewer.py | 33 tb = tb.tb_next 36 tb = tb.tb_next
|
/external/python/cpython2/Lib/unittest/ |
D | result.py | 157 tb = tb.tb_next 187 tb = tb.tb_next
|
/external/python/cpython3/Include/internal/ |
D | pycore_traceback.h | 87 PyObject *tb_next,
|
/external/python/cpython2/Lib/ |
D | dis.py | 58 while tb.tb_next: tb = tb.tb_next
|
D | traceback.py | 71 tb = tb.tb_next 105 tb = tb.tb_next
|
D | bdb.py | 344 t = t.tb_next 354 t = t.tb_next
|
/external/python/cpython3/Lib/asyncio/ |
D | base_tasks.py | 56 tb = tb.tb_next
|
/external/python/cpython2/Demo/pysvr/ |
D | pysvr.py | 116 if tb: tb = tb.tb_next
|
/external/python/six/ |
D | test_six.py | 593 return tb.tb_next.tb_next 595 return tb.tb_next
|