In article
,
Eric Snow wrote:
> Specifically, I am wondering why there is a difference for co_names.
This is not an answer to your question but, as a metapoint, in my
experience it is usually faster and often more reliable to try to answer
questions like this yourself using the tools that the
On Tue, 20 Feb 2007 20:39:43 -0500, LG wrote:
> Hi, All,
>
code = compile('print "hello everyone, how are you? "', '',
> 'exec')
exec code
> hello everyone, how are you?
print code
> ", line 1>
>
> how to print the code object ?
You just did.
> like the one on .pyc
What do you mea
En Tue, 20 Feb 2007 22:39:43 -0300, LG <[EMAIL PROTECTED]> escribió:
code = compile('print "hello everyone, how are you? "', '',
> 'exec')
exec code
> hello everyone, how are you?
print code
> ", line 1>
>
> how to print the code object ?
> like the one on .pyc
Do you want the sour