This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author philiprowlands
Recipients chris.259263, cito, eric.smith, philiprowlands
Date 2019-12-15.01:50:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1576374650.31.0.737182058219.issue31140@roundup.psfhosted.org>
In-reply-to
Content
Status as of 3.9.0a1:

======
test.py above appears fixed, i.e. reasonable error message.

$ ./python test.py
  File "/home/bob/pybug/Python-3.9.0a1/test.py", line 2
    hello = f"{world)}"
            ^
SyntaxError: f-string: unmatched ')'


======
bpo-31140.py is not as bad a initially reported, but still gives the wrong line number.

$ ./python bpo-31140.py
  File "<fstring>", line 1
    (a>2s)
        ^
SyntaxError: invalid syntax


=======
And my own example which led me to this bug. The syntax error is on line 3, not line 1.

$ cat fruit.py
pass
pass
s = f"{My favourite fruit is {apple}}"

$ ./python -V
Python 3.9.0a1

$ ./python fruit.py
  File "<fstring>", line 1
    (My favourite fruit is {apple})
        ^
SyntaxError: invalid syntax
History
Date User Action Args
2019-12-15 01:50:50philiprowlandssetrecipients: + philiprowlands, cito, eric.smith, chris.259263
2019-12-15 01:50:50philiprowlandssetmessageid: <1576374650.31.0.737182058219.issue31140@roundup.psfhosted.org>
2019-12-15 01:50:50philiprowlandslinkissue31140 messages
2019-12-15 01:50:49philiprowlandscreate