]> granicus.if.org Git - python/commit
bpo-38115: Deal with invalid bytecode offsets in lnotab (GH-16079)
authorT. Wouters <thomas@python.org>
Sat, 28 Sep 2019 14:49:15 +0000 (16:49 +0200)
committerGregory P. Smith <greg@krypto.org>
Sat, 28 Sep 2019 14:49:15 +0000 (07:49 -0700)
commitc8165036f374cd2ee64d4314eeb2514f7acb5026
tree457ae87d81e9ec7ee50e538302d069e28cf79287
parent7774d7831e8809795c64ce27f7df52674581d298
bpo-38115: Deal with invalid bytecode offsets in lnotab (GH-16079)

Document that lnotab can contain invalid bytecode offsets (because of
terrible reasons that are difficult to fix). Make dis.findlinestarts()
ignore invalid offsets in lnotab. All other uses of lnotab in CPython
(various reimplementations of addr2line or line2addr in Python, C and gdb)
already ignore this, because they take an address to look for, instead.

Add tests for the result of dis.findlinestarts() on wacky constructs in
test_peepholer.py, because it's the easiest place to add them.
Lib/dis.py
Lib/test/test_peepholer.py
Misc/NEWS.d/next/Library/2019-09-13-09-24-58.bpo-38115.BOO-Y1.rst [new file with mode: 0644]
Objects/lnotab_notes.txt