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 steve.dower
Recipients eryksun, paul.moore, steve.dower, tim.golden, xtreak, zach.ware
Date 2019-08-26.16:33:11
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1566837191.84.0.598996261447.issue37945@roundup.psfhosted.org>
In-reply-to
Content
So is the fix here to update locale._build_localename to check something like this?

if encoding is None:
    return language
elif sys.platform == 'win32' and encoding not in {'utf8', 'utf-8'}:
    return language
else:
    return language + '.' + encoding
History
Date User Action Args
2019-08-26 16:33:11steve.dowersetrecipients: + steve.dower, paul.moore, tim.golden, zach.ware, eryksun, xtreak
2019-08-26 16:33:11steve.dowersetmessageid: <1566837191.84.0.598996261447.issue37945@roundup.psfhosted.org>
2019-08-26 16:33:11steve.dowerlinkissue37945 messages
2019-08-26 16:33:11steve.dowercreate