mirror of
https://github.com/python/cpython.git
synced 2024-11-21 21:09:37 +01:00
gh-125593: Use colors to highlight error locations in tracebacks from exception group (#125681)
This commit is contained in:
parent
f6cc7c8bd0
commit
51b012b2a8
@ -4637,6 +4637,49 @@ class TestColorizedTraceback(unittest.TestCase):
|
|||||||
f'{boldm}ZeroDivisionError{reset}: {magenta}division by zero{reset}']
|
f'{boldm}ZeroDivisionError{reset}: {magenta}division by zero{reset}']
|
||||||
self.assertEqual(actual, expected)
|
self.assertEqual(actual, expected)
|
||||||
|
|
||||||
|
def test_colorized_traceback_from_exception_group(self):
|
||||||
|
def foo():
|
||||||
|
exceptions = []
|
||||||
|
try:
|
||||||
|
1 / 0
|
||||||
|
except ZeroDivisionError as inner_exc:
|
||||||
|
exceptions.append(inner_exc)
|
||||||
|
raise ExceptionGroup("test", exceptions)
|
||||||
|
|
||||||
|
try:
|
||||||
|
foo()
|
||||||
|
except Exception as e:
|
||||||
|
exc = traceback.TracebackException.from_exception(
|
||||||
|
e, capture_locals=True
|
||||||
|
)
|
||||||
|
|
||||||
|
red = _colorize.ANSIColors.RED
|
||||||
|
boldr = _colorize.ANSIColors.BOLD_RED
|
||||||
|
magenta = _colorize.ANSIColors.MAGENTA
|
||||||
|
boldm = _colorize.ANSIColors.BOLD_MAGENTA
|
||||||
|
reset = _colorize.ANSIColors.RESET
|
||||||
|
lno_foo = foo.__code__.co_firstlineno
|
||||||
|
actual = "".join(exc.format(colorize=True)).splitlines()
|
||||||
|
expected = [f" + Exception Group Traceback (most recent call last):",
|
||||||
|
f' | File {magenta}"{__file__}"{reset}, line {magenta}{lno_foo+9}{reset}, in {magenta}test_colorized_traceback_from_exception_group{reset}',
|
||||||
|
f' | {red}foo{reset}{boldr}(){reset}',
|
||||||
|
f' | {red}~~~{reset}{boldr}^^{reset}',
|
||||||
|
f" | e = ExceptionGroup('test', [ZeroDivisionError('division by zero')])",
|
||||||
|
f" | foo = {foo}",
|
||||||
|
f' | self = <{__name__}.TestColorizedTraceback testMethod=test_colorized_traceback_from_exception_group>',
|
||||||
|
f' | File {magenta}"{__file__}"{reset}, line {magenta}{lno_foo+6}{reset}, in {magenta}foo{reset}',
|
||||||
|
f' | raise ExceptionGroup("test", exceptions)',
|
||||||
|
f" | exceptions = [ZeroDivisionError('division by zero')]",
|
||||||
|
f' | {boldm}ExceptionGroup{reset}: {magenta}test (1 sub-exception){reset}',
|
||||||
|
f' +-+---------------- 1 ----------------',
|
||||||
|
f' | Traceback (most recent call last):',
|
||||||
|
f' | File {magenta}"{__file__}"{reset}, line {magenta}{lno_foo+3}{reset}, in {magenta}foo{reset}',
|
||||||
|
f' | {red}1 {reset}{boldr}/{reset}{red} 0{reset}',
|
||||||
|
f' | {red}~~{reset}{boldr}^{reset}{red}~~{reset}',
|
||||||
|
f" | exceptions = [ZeroDivisionError('division by zero')]",
|
||||||
|
f' | {boldm}ZeroDivisionError{reset}: {magenta}division by zero{reset}',
|
||||||
|
f' +------------------------------------']
|
||||||
|
self.assertEqual(actual, expected)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
@ -1428,7 +1428,7 @@ class TracebackException:
|
|||||||
f'+---------------- {title} ----------------\n')
|
f'+---------------- {title} ----------------\n')
|
||||||
_ctx.exception_group_depth += 1
|
_ctx.exception_group_depth += 1
|
||||||
if not truncated:
|
if not truncated:
|
||||||
yield from exc.exceptions[i].format(chain=chain, _ctx=_ctx)
|
yield from exc.exceptions[i].format(chain=chain, _ctx=_ctx, colorize=colorize)
|
||||||
else:
|
else:
|
||||||
remaining = num_excs - self.max_group_width
|
remaining = num_excs - self.max_group_width
|
||||||
plural = 's' if remaining > 1 else ''
|
plural = 's' if remaining > 1 else ''
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
Use color to highlight error locations in traceback from exception group
|
Loading…
Reference in New Issue
Block a user