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 terry.reedy
Recipients eric.smith, ned.deily, serhiy.storchaka, terry.reedy
Date 2017-06-16.15:35:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1497627328.19.0.370639890288.issue30682@psf.upfronthosting.co.za>
In-reply-to
Content
Before the patch, eval("f'\\\n'") gives me the same assertion failure, with an IDLE freeze instead of core dump equivalent, but is seems that the string should be of length 2.

>>> len('\\\n')
2
>>> len(f'\\\n')
2
History
Date User Action Args
2017-06-16 15:35:28terry.reedysetrecipients: + terry.reedy, eric.smith, ned.deily, serhiy.storchaka
2017-06-16 15:35:28terry.reedysetmessageid: <1497627328.19.0.370639890288.issue30682@psf.upfronthosting.co.za>
2017-06-16 15:35:28terry.reedylinkissue30682 messages
2017-06-16 15:35:28terry.reedycreate