Home | History | Annotate | Download | only in jinja2

Lines Matching defs:tb_next

44     def tb_next(self):
164 tb = tb.tb_next
172 tb = tb.tb_next
177 next = tb.tb_next
292 new_tb = exc_info[2].tb_next
300 traceback objects. The function returned allows resetting `tb_next` on
339 ('tb_next', ctypes.POINTER(_Traceback)),
346 """Set the tb_next attribute of a traceback object."""
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)