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 vstinner
Recipients ncoghlan, vstinner
Date 2019-05-15.02:53:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1557888792.38.0.13390479196.issue29818@roundup.psfhosted.org>
In-reply-to
Content
I fixed this issue in Python 3.7. Py_SetStandardStreamEncoding() now uses:

    PyMemAllocatorEx old_alloc;
    _PyMem_SetDefaultAllocator(PYMEM_DOMAIN_RAW, &old_alloc);

    ... _PyMem_RawStrdup() ...

    PyMem_SetAllocator(PYMEM_DOMAIN_RAW, &old_alloc);
History
Date User Action Args
2019-05-15 02:53:12vstinnersetrecipients: + vstinner, ncoghlan
2019-05-15 02:53:12vstinnersetmessageid: <1557888792.38.0.13390479196.issue29818@roundup.psfhosted.org>
2019-05-15 02:53:12vstinnerlinkissue29818 messages
2019-05-15 02:53:12vstinnercreate