A shorthand for 'format_list(extract_tb(tb, limit))'.
(tb, limit=None)
| 72 | print_list(extract_tb(tb, limit=limit), file=file) |
| 73 | |
| 74 | def format_tb(tb, limit=None): |
| 75 | """A shorthand for 'format_list(extract_tb(tb, limit))'.""" |
| 76 | return extract_tb(tb, limit=limit).format() |
| 77 | |
| 78 | def extract_tb(tb, limit=None): |
| 79 | """ |
nothing calls this directly
no test coverage detected
searching dependent graphs…