We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71c37a1 commit 3e9a547Copy full SHA for 3e9a547
1 file changed
Lib/dis.py
@@ -554,7 +554,12 @@ def print_exception_table(self, exception_entries):
554
start = entry.start_label
555
end = entry.end_label
556
target = entry.target_label
557
- print(f" {theme.exception_label}L{start}{theme.reset} to {theme.exception_label}L{end}{theme.reset} -> {theme.exception_label}L{target}{theme.reset} [{entry.depth}]{lasti}", file=file)
+ print(
558
+ f" {theme.exception_label}L{start}{theme.reset} to "
559
+ f"{theme.exception_label}L{end}{theme.reset} "
560
+ f"-> {theme.exception_label}L{target}{theme.reset} [{entry.depth}]{lasti}",
561
+ file=file,
562
+ )
563
564
565
class ArgResolver:
0 commit comments