Fix typo in lnotab_notes.txt (GH-26711)

Thanks for your contribution @P403n1x87
This commit is contained in:
Gabriele N. Tornetta 2021-06-14 15:49:05 +01:00 committed by GitHub
parent 8a76683cfb
commit cc8ecf6864
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ def co_lines(code):
table_iter = iter(code.internal_line_table):
for sdelta, ldelta in table_iter:
if ldelta == 0: # No change to line number, just accumulate changes to end
end += odelta
end += sdelta
continue
start = end
end = start + sdelta