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 Aifu LIU
Recipients Aifu LIU, ezio.melotti, vstinner
Date 2018-05-17.06:25:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1526538308.93.0.682650639539.issue33551@psf.upfronthosting.co.za>
In-reply-to
Content
The string prefixes u and f can't used together, for example:

>>> age = 30
>>> s = uf'年龄:{age}'
  File "<stdin>", line 1
    s = uf'年龄:{age}'
                   ^
SyntaxError: invalid syntax
>>>
History
Date User Action Args
2018-05-17 06:25:09Aifu LIUsetrecipients: + Aifu LIU, vstinner, ezio.melotti
2018-05-17 06:25:08Aifu LIUsetmessageid: <1526538308.93.0.682650639539.issue33551@psf.upfronthosting.co.za>
2018-05-17 06:25:08Aifu LIUlinkissue33551 messages
2018-05-17 06:25:08Aifu LIUcreate