Disable autojunk for python difflib

This commit is contained in:
disinvite 2024-06-08 10:26:14 -04:00
parent 2147be19de
commit 0509d3643d

View File

@ -565,7 +565,7 @@ def recomp_lookup(addr: int, exact: bool) -> Optional[str]:
orig_asm = [x[1] for x in orig_combined]
recomp_asm = [x[1] for x in recomp_combined]
diff = difflib.SequenceMatcher(None, orig_asm, recomp_asm)
diff = difflib.SequenceMatcher(None, orig_asm, recomp_asm, autojunk=False)
ratio = diff.ratio()
if ratio != 1.0: