Re: code object differences between 2.7 and 3.3a

2011-08-11 Thread Ned Deily
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

Re: code-object

2007-02-20 Thread Steven D'Aprano
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

Re: code-object

2007-02-20 Thread Gabriel Genellina
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