Searched refs:tb_next (Results 1 – 17 of 17) sorted by relevance
44 def tb_next(self): member in TracebackFrameProxy164 tb = tb.tb_next172 tb = tb.tb_next177 next = tb.tb_next261 new_tb = exc_info[2].tb_next316 if tb.tb_next is not None:317 old = _Traceback.from_address(id(tb.tb_next))320 obj.tb_next = ctypes.POINTER(_Traceback)()324 obj.tb_next = ctypes.pointer(next)
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()
14 struct _traceback *tb_next; member
157 tb = tb.tb_next187 tb = tb.tb_next
32 tb = tb.tb_next35 tb = tb.tb_next
369 tb = tb.tb_next
58 while tb.tb_next: tb = tb.tb_next
71 tb = tb.tb_next105 tb = tb.tb_next
344 t = t.tb_next354 t = t.tb_next
567 tb = tb.tb_next
832 exc_tb = exc_tb.tb_next
1049 tb = tb.tb_next
116 if tb: tb = tb.tb_next
366 tb = sys.exc_info()[2].tb_next
126 | | tb_next | next inner traceback | |
1048 single: tb_next (traceback attribute)1054 Special read-only attributes: :attr:`tb_next` is the next level in the stack
1309 tb_next (frame/None, R/O): next level in stack trace (toward the frame where