Mailing List Archive

decompiling python
Does anyone know of a decompilation tool for python?

-jm
decompiling python [ In reply to ]
First thing, look at 'dis' in the standard library reference.

But, remember, Python is compiled to byte code for the Python
virtual machine. 'dis' displays that byte code, *not* machine
code for your microprocessor.

- Dave



Jeff Saenz <jeff.saenz@jpl.nasa.gov> wrote:
> Does anyone know of a decompilation tool for python?

> -jm