You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
Merge
This commit is contained in:
@@ -1903,9 +1903,13 @@ class FragmentsWalker(pysource.SourceWalker, object):
|
||||
node[index].kind,
|
||||
)
|
||||
else:
|
||||
assert node[tup[0]] in tup[1], (
|
||||
f"at {node.kind}[{tup[0]}], expected to be in '{tup[1]}' "
|
||||
f"node; got '{node[tup[0]].kind}'"
|
||||
assert (
|
||||
node[tup[0]] in tup[1]
|
||||
), "at %s[%d], expected to be in '%s' node; got '%s'" % (
|
||||
node.kind,
|
||||
tup[0],
|
||||
tup[1],
|
||||
node[tup[0].kind],
|
||||
)
|
||||
|
||||
else:
|
||||
|
Reference in New Issue
Block a user