Martin Panter added the comment:

I haven’t looked, but my guess at why test_unparse could fail would be trying 
to generate code for an f-string with control characters in. Maybe it is taking 
stuff like

f'''{x}
{y}
'''

and generating

f'{x}\n{y}\n'

----------
nosy: +martin.panter

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue27921>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to