Message9084

Author zyasoft
Recipients amak, funkychocobo, fwierzbicki, qny31541, zyasoft
Date 2014-10-05.23:13:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412550791.04.0.936939225951.issue1460@psf.upfronthosting.co.za>
In-reply-to
Content
We now patch CPython since some commit in 2.7, so closing out:

$ jython27
Jython 2.7b3+ (default:9fef5da411e5+, Oct 3 2014, 16:52:21)
[Java HotSpot(TM) 64-Bit Server VM (Oracle Corporation)] on java1.7.0_21
Type "help", "copyright", "credits" or "license" for more information.
>>> for i in range(5):
...     print i
... print "blahs"
  File "<stdin>", line 3
    print "blahs"
    ^
SyntaxError: required (...)+ loop did not match anything at input 'print'


$ python
Python 2.7.5 (default, Mar  9 2014, 22:15:05)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> for i in range(5):
...     print i
... print "blah"
  File "<stdin>", line 3
    print "blah"
        ^
SyntaxError: invalid syntax
>>>
History
Date User Action Args
2014-10-05 23:13:11zyasoftsetmessageid: <1412550791.04.0.936939225951.issue1460@psf.upfronthosting.co.za>
2014-10-05 23:13:11zyasoftsetrecipients: + zyasoft, fwierzbicki, amak, funkychocobo, qny31541
2014-10-05 23:13:11zyasoftlinkissue1460 messages
2014-10-05 23:13:10zyasoftcreate