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 lys.nikolaou
Recipients Gerrit.Holl, lys.nikolaou, terry.reedy
Date 2020-05-02.10:23:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1588415019.02.0.164071326953.issue40449@roundup.psfhosted.org>
In-reply-to
Content
This has been fixed in 3.9.0a6 due to the new parser:

╰─ cat a.py
s = ("apricot "
     "pineapple"
     f"shallot{")
╰─ ./python.exe a.py
  File "/Users/lysnikolaou/Repositories/cpython/a.py", line 3
    f"shallot{")
               ^
SyntaxError: f-string: expecting '}'
History
Date User Action Args
2020-05-02 10:23:39lys.nikolaousetrecipients: + lys.nikolaou, terry.reedy, Gerrit.Holl
2020-05-02 10:23:39lys.nikolaousetmessageid: <1588415019.02.0.164071326953.issue40449@roundup.psfhosted.org>
2020-05-02 10:23:39lys.nikolaoulinkissue40449 messages
2020-05-02 10:23:38lys.nikolaoucreate