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 martin.panter
Recipients barry, eric.smith, martin.panter, ned.deily, python-dev, serhiy.storchaka
Date 2016-09-03.22:49:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1472942962.92.0.643944469745.issue27921@psf.upfronthosting.co.za>
In-reply-to
Content
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'
History
Date User Action Args
2016-09-03 22:49:22martin.pantersetrecipients: + martin.panter, barry, eric.smith, ned.deily, python-dev, serhiy.storchaka
2016-09-03 22:49:22martin.pantersetmessageid: <1472942962.92.0.643944469745.issue27921@psf.upfronthosting.co.za>
2016-09-03 22:49:22martin.panterlinkissue27921 messages
2016-09-03 22:49:22martin.pantercreate