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 yselivanov
Recipients eric.smith, gvanrossum, serhiy.storchaka, yselivanov
Date 2016-11-29.00:31:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1480379497.98.0.444236262661.issue28827@psf.upfronthosting.co.za>
In-reply-to
Content
Right now, Python 3.6b4 happily accepts the following:

    >>> f'{10:02\N{LATIN CAPITAL LETTER X}}'
    '0A'
    >>> f'{10:02X}'
    '0A'

I think that the first line should not be accepted (as we now don't accept escaped open curly brace).

At least this should be documented in the PEP as a thing that shouldn't be relied upon, i.e. something that might not be supported in the future versions.
History
Date User Action Args
2016-11-29 00:31:38yselivanovsetrecipients: + yselivanov, gvanrossum, eric.smith, serhiy.storchaka
2016-11-29 00:31:37yselivanovsetmessageid: <1480379497.98.0.444236262661.issue28827@psf.upfronthosting.co.za>
2016-11-29 00:31:37yselivanovlinkissue28827 messages
2016-11-29 00:31:37yselivanovcreate