Skip to content

Commit cc8ecf6

Browse files
authored
Fix typo in lnotab_notes.txt (GH-26711)
Thanks for your contribution @P403n1x87
1 parent 8a76683 commit cc8ecf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/lnotab_notes.txt

+1-1
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)