andrews4s / unpyc37

Decompiler for Python 3.7 (forked from https://github.com/figment/unpyc3)
GNU General Public License v3.0
57 stars 19 forks source link

Many different fixes #18

Open Themis-0 opened 1 year ago

Themis-0 commented 1 year ago
return a or (b if c else 0)

return (b if (c if e else f) else d)

class ClassName:

@staticmethod
def _methodName():
    try:
        import ww.main.ccc as ccc
    except ModuleNotFoundError:
        return
    ccc.vvv = 0

while: if: pass else:

...