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 jitterman
Recipients jitterman
Date 2020-02-10.16:50:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1581353435.4.0.444515809874.issue39601@roundup.psfhosted.org>
In-reply-to
Content
It appears as if escaping the braces by doubling them up is not working properly if the braces are in a format specification within a f-string.

>>> print(f'Email:\n    {C:{{v.name}} {{v.email}}|\n    }')                         
Traceback (most recent call last):
  File "bugreport.py", line 95, in <module>
    print(f'Email:\n    {C:{{v.name}} {{v.email}}|\n    }')
NameError: name 'v' is not defined

The escaping works as expected when the string's format method is used.
History
Date User Action Args
2020-02-10 16:50:35jittermansetrecipients: + jitterman
2020-02-10 16:50:35jittermansetmessageid: <1581353435.4.0.444515809874.issue39601@roundup.psfhosted.org>
2020-02-10 16:50:35jittermanlinkissue39601 messages
2020-02-10 16:50:35jittermancreate