Home | History | Annotate | Download | only in jinja2

Lines Matching refs:tb_next

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