mirror of https://github.com/python/cpython
Fix typo in lnotab_notes.txt (GH-26711)
Thanks for your contribution @P403n1x87
This commit is contained in:
parent
8a76683cfb
commit
cc8ecf6864
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue