This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mwh
Recipients
Date 2006-03-02.00:52:49
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
this is svn head:

>>> import compiler
>>> compiler.transformer.parse("'doc'")
Module(None, Stmt([Discard(Const('doc'))]))

this is 2.4:

>>> import compiler
>>> compiler.transformer.parse("'doc'")
Module('doc', Stmt([]))

I think the problem may be rooted in the parser module rather than the 
compiler module itself.
History
Date User Action Args
2007-08-23 14:38:08adminlinkissue1441397 messages
2007-08-23 14:38:08admincreate