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, matpi, mrabarnett
Date 2020-06-16.11:41:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1592307663.46.0.749053912699.issue40980@roundup.psfhosted.org>
In-reply-to
Content
`latin1` is the character set that Unicode code point from \u0000 to \u00ff, and the characters are directly mapped from/to bytes.

So b'\xe9' is mapped to \u00e9, it is `é`.

Of course, characters with Unicode code point greater than 0xff are impossible to appear in `bytes`.
History
Date User Action Args
2020-06-16 11:41:03malinsetrecipients: + malin, ezio.melotti, mrabarnett, matpi
2020-06-16 11:41:03malinsetmessageid: <1592307663.46.0.749053912699.issue40980@roundup.psfhosted.org>
2020-06-16 11:41:03malinlinkissue40980 messages
2020-06-16 11:41:03malincreate