Re: Decompile pyrex standalone program

Kenny MacDermid <[email protected]> Tue, 04 Aug 2009 19:49:03 -0400
Newsgroups gmane.comp.python.pyrex
Message-ID <[email protected]>
On 4-Aug-09, at 6:32 PM, Fernando Magro wrote:

> Hi,
>
> I have a pyrex standalone binary (ELF binary) that I would like to
> decompile and recover the pyx source code.
>
> Is it possible in any way?

Unlikely. Pyrex generates C that'll then be compiled in the binary.

You'd have to use a standard disassembler (e.g. IDA Pro), and slowly  =

reverse engineer what it was doing.

Kenny