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 59bedbd commit 29da92eCopy full SHA for 29da92e
Lib/test/test_code.py
@@ -905,9 +905,9 @@ def get_line_branches(func):
905
base = code.co_firstlineno
906
return [
907
(
908
- code_offset_to_line(code, src)-base,
909
- code_offset_to_line(code, left)-base,
910
- code_offset_to_line(code, right)-base
+ code_offset_to_line(code, src) - base,
+ code_offset_to_line(code, left) - base,
+ code_offset_to_line(code, right) - base
911
) for (src, left, right) in
912
code.co_branches()
913
]
0 commit comments