Merge hell

This commit is contained in:
rocky
2024-05-30 05:01:57 -04:00
parent 2dfcc1206d
commit dfa3a41dc9
2 changed files with 2 additions and 2 deletions

View File

@@ -240,7 +240,7 @@ def main_bin():
start_offset=0,
stop_offset=-1,
)
result = [options.get("do_verify", None)] + list(result)
result = list(result)
if len(pyc_paths) > 1:
mess = status_msg(*result)
print("# " + mess)

View File

@@ -416,7 +416,7 @@ class Python38Parser(Python37Parser):
[opname[: opname.rfind("_")] for opname in self.seen_ops]
)
custom_ops_processed = {"DICT_MERGE"}
custom_ops_processed = set(["DICT_MERGE"])
# Loop over instructions adding custom grammar rules based on
# a specific instruction seen.