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 methane
Recipients ezio.melotti, methane, vstinner
Date 2019-03-15.05:32:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1552627963.14.0.69589784608.issue36297@roundup.psfhosted.org>
In-reply-to
Content
unicode_internal codec is deprecated since Python 3.3.
It raises DeprecationWarning from 3.3.

>>> "hello".encode('unicode_internal')
__main__:1: DeprecationWarning: unicode_internal codec has been deprecated
b'h\x00\x00\x00e\x00\x00\x00l\x00\x00\x00l\x00\x00\x00o\x00\x00\x00'

May I remove it in 3.8?
History
Date User Action Args
2019-03-15 05:32:43methanesetrecipients: + methane, vstinner, ezio.melotti
2019-03-15 05:32:43methanesetmessageid: <1552627963.14.0.69589784608.issue36297@roundup.psfhosted.org>
2019-03-15 05:32:43methanelinkissue36297 messages
2019-03-15 05:32:42methanecreate