Message384630
Consider this file:
```
x = (
```
The error that we get is:
❯ python ../a.py
File "/home/pablogsal/github/python/master/../a.py", line 6
^
SyntaxError: unexpected EOF while parsin
This is quite uninformative of the actual problem, which is the closed parentheses.
The same happens with something like this:
( 1+2
File "/home/pablogsal/github/python/master/lel.py", line 3
^
SyntaxError: unexpected EOF while parsing
With some effort, we can include the location of the unclosed parentheses. |
|
Date |
User |
Action |
Args |
2021-01-08 03:03:30 | pablogsal | set | recipients:
+ pablogsal |
2021-01-08 03:03:30 | pablogsal | set | messageid: <1610075010.91.0.684383999677.issue42864@roundup.psfhosted.org> |
2021-01-08 03:03:30 | pablogsal | link | issue42864 messages |
2021-01-08 03:03:30 | pablogsal | create | |
|