Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The compiler.parse() function in python give me the compiled code of an expression. For ex: compiler.parse('a/b/c')

generates

Module(None, Stmt([Discard(Div((Div((Name('a'), Name('b'))), Name('c'))))]))

How can I do the reverse of it; meaning given the compiled statement how can I get a/b/c?

PS :: I know that compiler module is deprecated in python2.7 and python3.0 but it seems to be the only thing for my work!

share|improve this question
1  

1 Answer

uncompyle actually uncompiles 2.7 bytecode, so you might want check if you can hook into that with your parsed code after compilation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.