You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
In a formatted string using "lambda', we should not add "\n". For example in: f'{(lambda x:x)("8")!r}' Adding a "\n" after "lambda x: x" will give an error message: SyntaxError: f-string expression part cannot include a backslash
These are byte-compiled programs compiled by Python 3.6. Furthrmore, the programs here are self-checking: when decompiled and then run again in a 3.6 interpreter, they are likely to give an error when they are miscompiled.