StackTrace

Inheritance:

Methods of StackTrace:

__init__
def __init__(self, label="", start=0, limit=None)

label is a string (or anything that be be a string) that is printed as part of the trace back. This is just to make it easier to tell what the stack trace is referring to. start is an integer number of stack frames back from the most recent. (This is automatically bumped up by one to skip the __init__ call to the StackTrace). limit is an integer number of stack frames to record (or None for unlimited).

__str__
def __str__(self)

Undocumented function.

compact
def compact(self)

Undocumented function.