Lines Matching refs:Traceback
24 stack(), trace() - get info about frames on the stack or in a traceback
182 """Return true if the object is a traceback.
184 Traceback objects provide these attributes:
188 tb_next next inner traceback object (called by this level)"""
198 f_exc_traceback traceback if raised in this frame, or None
420 'function, traceback, frame, or code object'.format(object))
521 The argument may be a module, class, method, function, traceback, frame,
685 The argument may be a module, class, method, function, traceback, frame,
698 The argument may be a module, class, method, function, traceback, frame,
985 Traceback = namedtuple('Traceback', 'filename lineno function code_context index')
988 """Get information about a frame or traceback object.
1001 raise TypeError('{!r} is not a frame or traceback object'.format(frame))
1018 return Traceback(filename, lineno, frame.f_code.co_name, lines, index)
1037 """Get a list of records for a traceback's frame and all lower frames.