En Tue, 20 Feb 2007 22:39:43 -0300, LG <[EMAIL PROTECTED]> escribió:
>>>> code = compile('print "hello everyone, how are you? "', '<string>',
> 'exec')
>>>> exec code
> hello everyone, how are you?
>>>> print code
> <code object ? at 0x8122d70, file "<string>", line 1>
>
> how to print the code object ?
> like the one on .pyc
Do you want the source code back? You need a decompiler. decompyle may
work but it's outdated.
--
Gabriel Genellina
--
http://mail.python.org/mailman/listinfo/python-list
