You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
This rebases 3.7, 3.8 ...decompilation off of 3.7ish rather than a 3.4 base. Add more 3.7 and 3.8 tests
6 lines
148 B
Python
6 lines
148 B
Python
(x, y) = "foo", 0
|
|
if x := __name__:
|
|
y = 1
|
|
assert x == "__main__", "Walrus operator changes value"
|
|
assert y == 1, "Walrus operator branch taken"
|