Shorthand to initialize a FormattedTB in Linux colors mode.
| 1440 | |
| 1441 | # A simple class to preserve Nathan's original functionality. |
| 1442 | class ColorTB(FormattedTB): |
| 1443 | """Shorthand to initialize a FormattedTB in Linux colors mode.""" |
| 1444 | |
| 1445 | def __init__(self, color_scheme='Linux', call_pdb=0, **kwargs): |
| 1446 | FormattedTB.__init__(self, color_scheme=color_scheme, |
| 1447 | call_pdb=call_pdb, **kwargs) |
| 1448 | |
| 1449 | |
| 1450 | class SyntaxTB(ListTB): |
no outgoing calls