Message7577
| Author | irmen |
|---|---|
| Recipients | irmen |
| Date | 2013-01-19.13:21:33 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1358601693.8.0.88518201681.issue2007@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
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
>>> |
|
| History | |||
|---|---|---|---|
| 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 | |