MCPcopy Create free account
hub / github.com/ipython/ipython / ColorTB

Class ColorTB

IPython/core/ultratb.py:1442–1447  ·  view source on GitHub ↗

Shorthand to initialize a FormattedTB in Linux colors mode.

Source from the content-addressed store, hash-verified

1440
1441# A simple class to preserve Nathan's original functionality.
1442class 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
1450class SyntaxTB(ListTB):

Callers 1

test_handlersFunction · 0.90

Calls

no outgoing calls

Tested by 1

test_handlersFunction · 0.72