/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 | 30 tb = tb.tb_next 130 tb = tb.tb_next 188 tb = tb.tb_next
|
D | test_traceback.py | 231 cleanup_func(tb.tb_next) 853 inner_frame = tb.tb_next.tb_next.tb_next.tb_frame
|
D | test_dis.py | 22 while tb.tb_next: 23 tb = tb.tb_next 1100 while tb.tb_next: tb = tb.tb_next
|
/external/python/cpython3/Python/clinic/ |
D | traceback.c.h | 12 tb_new_impl(PyTypeObject *type, PyObject *tb_next, PyFrameObject *tb_frame, 21 PyObject *tb_next; in tb_new() local 27 &tb_next, &PyFrame_Type, &tb_frame, &tb_lasti, &tb_lineno)) { in tb_new() 30 return_value = tb_new_impl(type, tb_next, tb_frame, tb_lasti, tb_lineno); in tb_new()
|
/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 …]
|
/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/ |
D | dis.py | 86 while tb.tb_next: tb = tb.tb_next 496 while tb.tb_next: 497 tb = tb.tb_next
|
D | code.py | 142 lines = traceback.format_exception(ei[0], ei[1], last_tb.tb_next)
|
D | traceback.py | 224 tb = tb.tb_next 310 tb = tb.tb_next
|
D | bdb.py | 517 t = t.tb_next 527 t = t.tb_next
|
/external/python/cpython2/Lib/unittest/ |
D | result.py | 157 tb = tb.tb_next 187 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/idlelib/ |
D | StackViewer.py | 32 tb = tb.tb_next 35 tb = tb.tb_next
|
/external/python/cpython2/Include/ |
D | traceback.h | 14 struct _traceback *tb_next; member
|
/external/python/cpython3/Lib/unittest/ |
D | result.py | 178 tb = tb.tb_next 210 tb = tb.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/Include/ |
D | traceback.h | 16 struct _traceback *tb_next; member
|
/external/python/cpython3/Lib/asyncio/ |
D | base_tasks.py | 47 tb = tb.tb_next
|
/external/python/cpython2/Demo/pysvr/ |
D | pysvr.py | 116 if tb: tb = tb.tb_next
|
/external/python/setuptools/setuptools/command/ |
D | sdist.py | 110 tb.tb_next.tb_frame.f_locals['template'].close()
|
/external/python/six/ |
D | test_six.py | 593 return tb.tb_next.tb_next 595 return tb.tb_next
|