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 gvanrossum
Recipients alex, glyph, gvanrossum, ncoghlan
Date 2014-06-06.16:29:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1402072151.56.0.94097153108.issue21669@psf.upfronthosting.co.za>
In-reply-to
Content
Nice! I put it through a bit of a torture test and found a few odd corners. E.g. it doesn't catch this:

    if 1: print 42

nor this:

    if 1:
        print 42

nor this:

    def foo():
        print 42

I also notice that if the printed expression starts with a unary + or -, it is not a syntax error but a type error. But I don't think we should try to do anything about that.
History
Date User Action Args
2014-06-06 16:29:11gvanrossumsetrecipients: + gvanrossum, ncoghlan, glyph, alex
2014-06-06 16:29:11gvanrossumsetmessageid: <1402072151.56.0.94097153108.issue21669@psf.upfronthosting.co.za>
2014-06-06 16:29:11gvanrossumlinkissue21669 messages
2014-06-06 16:29:11gvanrossumcreate