Update to use xdis 4.4.0 ...

with more correct SipHash and other needed bug fixes.
This commit is contained in:
rocky
2020-04-20 10:47:34 -04:00
parent ced33a8f0b
commit 1d7e8f1617
6 changed files with 10 additions and 9 deletions

View File

@@ -22,7 +22,7 @@ from xdis.bytecode import Bytecode, findlinestarts, offset2line
def line_number_mapping(pyc_filename, src_filename):
(version, timestamp, magic_int, code1, is_pypy,
source_size) = load_module(pyc_filename)
source_size, sip_hash) = load_module(pyc_filename)
try:
code2 = load_file(src_filename)
except SyntaxError as e: