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 dalke
Recipients dalke
Date 2008-02-05.00:46:40
SpamBayes Score 0.20999493
Marked as misclassified No
Message-id <1202172401.58.0.984880903908.issue2011@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.6a0 (trunk:60565M, Feb  4 2008, 01:21:28) 
[GCC 4.0.1 (Apple Computer, Inc. build 5367)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from compiler import parse
>>> parse("1;")
Module(None, Stmt([Discard(Const(1)), Discard(Const(None))]))

I did not expect the Discard(Const(None)).  Instead, I expected

Module(None, Stmt([Discard(Const(1))]))
History
Date User Action Args
2008-02-05 00:46:41dalkesetspambayes_score: 0.209995 -> 0.20999493
recipients: + dalke
2008-02-05 00:46:41dalkesetspambayes_score: 0.209995 -> 0.209995
messageid: <1202172401.58.0.984880903908.issue2011@psf.upfronthosting.co.za>
2008-02-05 00:46:41dalkelinkissue2011 messages
2008-02-05 00:46:40dalkecreate