Kaydet (Commit) 9773a49a authored tarafından Batuhan Osman TASKAYA's avatar Batuhan Osman TASKAYA

bpo33326: Convert lists to frozenset on opcode module for better indexing

üst b5bbb8a7
......@@ -214,3 +214,8 @@ jrel_op('CALL_FINALLY', 162)
def_op('POP_FINALLY', 163)
del def_op, name_op, jrel_op, jabs_op
for container in __all__:
obj = locals()[container]
if isinstance(obj, list):
locals()[container] = frozenset(obj)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment