You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
Improve 3.5+ BUILD_MAP_UNPACK...
And add build_tuple_unpack runtime test from a previous commit. We are far from out of the woods, as there is more to do and we've uncovered more bugs in handling this.
This commit is contained in:
@@ -144,7 +144,7 @@ class Scanner3(Scanner):
|
||||
varargs_ops.add(self.opc.CALL_METHOD)
|
||||
if self.version >= 3.5:
|
||||
varargs_ops |= set([self.opc.BUILD_SET_UNPACK,
|
||||
# self.opc.BUILD_MAP_UNPACK, # we will handle this later
|
||||
self.opc.BUILD_MAP_UNPACK, # we will handle this later
|
||||
self.opc.BUILD_LIST_UNPACK,
|
||||
self.opc.BUILD_TUPLE_UNPACK])
|
||||
if self.version >= 3.6:
|
||||
|
Reference in New Issue
Block a user