Lines Matching refs:next
47 def set_next(self, next):
50 tb_set_next(self.tb, next and next.tb or None)
56 self._tb_next = next
175 # save a reference to the next frame if we override the current
177 next = tb.tb_next
187 tb = next
345 def tb_set_next(tb, next):
348 (next is None or isinstance(next, TracebackType))):
354 if next is None:
357 next = _Traceback.from_address(id(next))
358 next.ob_refcnt += 1
359 obj.tb_next = ctypes.pointer(next)