Message7577
future's print_function doesn't work:
>>> from __future__ import print_function
>>> print("hello", end="test\n")
File "<stdin>", line 1
print("hello", end="test\n")
^
SyntaxError: no viable alternative at input '='
>>>
Expected :
>>> from __future__ import print_function
>>> print("hello", end="test\n")
hellotest
>>> |
|
Date |
User |
Action |
Args |
2013-01-19 13:21:33 | irmen | set | recipients:
+ irmen |
2013-01-19 13:21:33 | irmen | set | messageid: <1358601693.8.0.88518201681.issue2007@psf.upfronthosting.co.za> |
2013-01-19 13:21:33 | irmen | link | issue2007 messages |
2013-01-19 13:21:33 | irmen | create | |
|