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