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 malin
Recipients ezio.melotti, malin, mrabarnett, serhiy.storchaka, veaba, veky
Date 2019-10-26.01:59:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1572055166.09.0.270958905274.issue38582@roundup.psfhosted.org>
In-reply-to
Content
Octal escape:
    \ooo        Character with octal value ooo
    As in Standard C, up to three octal digits are accepted.

It only accepts UCS1 characters (ooo <= 0o377):
    >>> ord('\377')
    255
    >>> len('\378')
    2
    >>> '\378' == '\37' + '8'
    True

IMHO this is not useful, and creates confusions.
Maybe it can be deprecated in language level.
History
Date User Action Args
2019-10-26 01:59:26malinsetrecipients: + malin, ezio.melotti, mrabarnett, serhiy.storchaka, veky, veaba
2019-10-26 01:59:26malinsetmessageid: <1572055166.09.0.270958905274.issue38582@roundup.psfhosted.org>
2019-10-26 01:59:26malinlinkissue38582 messages
2019-10-26 01:59:25malincreate