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 taleinat
Recipients ezio.melotti, ned.deily, serhiy.storchaka, taleinat, terry.reedy
Date 2019-10-02.20:04:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1570046644.21.0.616309770175.issue13153@roundup.psfhosted.org>
In-reply-to
Content
Not sure if this helps, but a bit of experimentation brought this up:

>>> '\N{PERSONAL COMPUTER}'.encode('utf-8')
b'\xf0\x9f\x92\xbb'
>>> '💻'.encode('utf-16le')
b'\xf0\x00\x9f\x00\x92\x00\xbb\x00'
>>> '💻'.encode('utf-16')
b'\xff\xfe\xf0\x00\x9f\x00\x92\x00\xbb\x00'
History
Date User Action Args
2019-10-02 20:04:04taleinatsetrecipients: + taleinat, terry.reedy, ned.deily, ezio.melotti, serhiy.storchaka
2019-10-02 20:04:04taleinatsetmessageid: <1570046644.21.0.616309770175.issue13153@roundup.psfhosted.org>
2019-10-02 20:04:04taleinatlinkissue13153 messages
2019-10-02 20:04:04taleinatcreate