Searched defs:tb_next (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Include/
H A Dtraceback.h14 struct _traceback *tb_next; member in struct:_traceback
/external/python/cpython3/Include/
H A Dtraceback.h16 struct _traceback *tb_next; member in struct:_traceback
/external/libmojo/third_party/jinja2/
H A Ddebug.py44 def tb_next(self): member in class:TracebackFrameProxy
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))
[all...]

Completed in 166 milliseconds