Message8723
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 |
|
Date |
User |
Action |
Args |
2014-06-19 06:14:00 | zyasoft | set | messageid: <1403158440.94.0.928086742696.issue2007@psf.upfronthosting.co.za> |
2014-06-19 06:14:00 | zyasoft | set | recipients:
+ zyasoft, fwierzbicki, irmen, pjac |
2014-06-19 06:14:00 | zyasoft | link | issue2007 messages |
2014-06-19 06:14:00 | zyasoft | create | |
|