Message8723

Author zyasoft
Recipients fwierzbicki, irmen, pjac, zyasoft
Date 2014-06-19.06:14:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403158440.94.0.928086742696.issue2007@psf.upfronthosting.co.za>
In-reply-to
Content
Interestingly, this works fine:

>>> from __future__ import print_function
>>> print(123)
123

But as reported, we still have this bug:

>>> print(1,2,3,4)
(1, 2, 3, 4)

Whereas as CPython works like so:

>>> from __future__ import print_function
>>> print(1,2,3,4)
1 2 3 4
History
Date User Action Args
2014-06-19 06:14:00zyasoftsetmessageid: <1403158440.94.0.928086742696.issue2007@psf.upfronthosting.co.za>
2014-06-19 06:14:00zyasoftsetrecipients: + zyasoft, fwierzbicki, irmen, pjac
2014-06-19 06:14:00zyasoftlinkissue2007 messages
2014-06-19 06:14:00zyasoftcreate