Message367698
The original issue was about different error messages in REPL and eval(). But it is not related to string prefixes. We have the same difference without involving strings:
>>> a b
File "<stdin>", line 1
a b
^
SyntaxError: invalid syntax
>>> eval("a b")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<string>", line 1
a b
^
SyntaxError: unexpected EOF while parsing
I suggest to revert this change and close the issue. |
|
| Date |
User |
Action |
Args |
| 2020-04-29 20:14:05 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, gvanrossum, vstinner, eric.smith, petr.viktorin, lys.nikolaou, pablogsal, aeros |
| 2020-04-29 20:14:05 | serhiy.storchaka | set | messageid: <1588191245.66.0.850926425478.issue40246@roundup.psfhosted.org> |
| 2020-04-29 20:14:05 | serhiy.storchaka | link | issue40246 messages |
| 2020-04-29 20:14:05 | serhiy.storchaka | create | |
|