Show More
@@ -718,7 +718,13 b' class VerboseTB(TBTools):' | |||||
718 | ) |
|
718 | ) | |
719 | skipped = 0 |
|
719 | skipped = 0 | |
720 | frames.append(self.format_record(r)) |
|
720 | frames.append(self.format_record(r)) | |
721 |
|
721 | if skipped: | ||
|
722 | Colors = self.Colors # just a shorthand + quicker name lookup | |||
|
723 | ColorsNormal = Colors.Normal # used a lot | |||
|
724 | frames.append( | |||
|
725 | " %s[... skipping hidden %s frame]%s\n" | |||
|
726 | % (Colors.excName, skipped, ColorsNormal) | |||
|
727 | ) | |||
722 |
|
728 | |||
723 | formatted_exception = self.format_exception(etype, evalue) |
|
729 | formatted_exception = self.format_exception(etype, evalue) | |
724 | if records: |
|
730 | if records: |
General Comments 0
You need to be logged in to leave comments.
Login now