From: bituman on
I have two questions for the list:
- what extension is pyj ?
- is there a good python debugger that can inspect precompiled python files?

Thank you :)

From: Diez B. Roggisch on
bituman wrote:

> I have two questions for the list:
> - what extension is pyj ?

AFAIK custom to some game that uses python - but I guess you already know
that.....

> - is there a good python debugger that can inspect precompiled python
> files?

You can decompyle them:

http://www.crazy-compilers.com/decompyle/

But only up to python 2.3. No idea if that is sufficient & if there is
anything newer out there.

diez
From: Paul Boddie on
Diez B. Roggisch wrote:
>
> http://www.crazy-compilers.com/decompyle/
>
> But only up to python 2.3. No idea if that is sufficient & if there is
> anything newer out there.

Usual service message: sources available from here...

http://packages.debian.org/unstable/source/decompyle

Paul