[issue39601] brace escapes are not working in formatted string literal format specifications

JitterMan report at bugs.python.org
Mon Feb 10 11:50:35 EST 2020


JitterMan <pythonbugs at shalmirane.com> added the comment:

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.

----------
Added file: https://bugs.python.org/file48888/bugreport.py

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue39601>
_______________________________________


More information about the Python-bugs-list mailing list