Skip to content

Commit 3e9a547

Browse files
Wrap long lines
1 parent 71c37a1 commit 3e9a547

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

Lib/dis.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,12 @@ def print_exception_table(self, exception_entries):
554554
start = entry.start_label
555555
end = entry.end_label
556556
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)
557+
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+
)
558563

559564

560565
class ArgResolver:

0 commit comments

Comments
 (0)