Message387153
Still the same in 3.10:
Python 3.10.0a5+ (heads/master:bf2e7e55d7, Feb 11 2021, 23:09:25) [MSC v.1928 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> print 3
File "<stdin>", line 1
print 3
^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(3)?
>>> def f(x): return x
...
>>> print f(3)
File "<stdin>", line 1
print f(3)
^
SyntaxError: invalid syntax |
|
Date |
User |
Action |
Args |
2021-02-17 13:15:54 | iritkatriel | set | recipients:
+ iritkatriel, terry.reedy, ncoghlan, eric.smith, serhiy.storchaka, CuriousLearner, corona10, nitishch, xtreak, piyushhajare |
2021-02-17 13:15:54 | iritkatriel | set | messageid: <1613567754.42.0.191056057844.issue34013@roundup.psfhosted.org> |
2021-02-17 13:15:54 | iritkatriel | link | issue34013 messages |
2021-02-17 13:15:54 | iritkatriel | create | |
|