Lines Matching refs:te
124 te = TracebackException(type(value), value, tb, limit=limit, compact=True)
125 te.print(file=file, chain=chain)
139 te = TracebackException(type(value), value, tb, limit=limit, compact=True)
140 return list(te.format(chain=chain))
159 te = TracebackException(type(value), value, None, compact=True)
160 return list(te.format_exception_only())
723 te, e = queue.pop()
777 te.__cause__ = cause
778 te.__context__ = context
779 te.exceptions = exceptions
781 queue.append((te.__cause__, e.__cause__))
783 queue.append((te.__context__, e.__context__))
785 queue.extend(zip(te.exceptions, e.exceptions))