We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
When decompiling a Python 2.4 module, something such as this:
if True: pass elif False: pass elif not True: pass
will be decompiled as:
if True: pass else: if False: pass else: if not True: pass