Skip to content

Commit 101dc7e

Browse files
P403n1x87jdevries3133
authored andcommitted
Fix typo in lnotab_notes.txt (pythonGH-26711)
Thanks for your contribution @P403n1x87
1 parent 6109bfa commit 101dc7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/lnotab_notes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def co_lines(code):
6767
table_iter = iter(code.internal_line_table):
6868
for sdelta, ldelta in table_iter:
6969
if ldelta == 0: # No change to line number, just accumulate changes to end
70-
end += odelta
70+
end += sdelta
7171
continue
7272
start = end
7373
end = start + sdelta

0 commit comments

Comments
 (0)