2.x tolerance (no set literals)

This commit is contained in:
rocky
2024-07-12 14:39:31 -04:00
parent 6b9cfb3bd7
commit 3d44adde41

View File

@@ -711,7 +711,7 @@ class Python3Parser(PythonParser):
# Note: BUILD_TUPLE_UNPACK_WITH_CALL gets considered by # Note: BUILD_TUPLE_UNPACK_WITH_CALL gets considered by
# default because it starts with BUILD. So we'll set to ignore it from # default because it starts with BUILD. So we'll set to ignore it from
# the start. # the start.
custom_ops_processed = {"BUILD_TUPLE_UNPACK_WITH_CALL"} custom_ops_processed = set(["BUILD_TUPLE_UNPACK_WITH_CALL"])
# A set of instruction operation names that exist in the token stream. # A set of instruction operation names that exist in the token stream.
# We use this customize the grammar that we create. # We use this customize the grammar that we create.