On 17.02.2021 10:55, Anders Munch wrote: >>>> import locale >>>> locale.setlocale(locale.LC_ALL, 'en_DE') > 'en_DE' >>>> locale.getlocale() > Traceback (most recent call last): > File "<stdin>", line 1, in <module> > File "C:\flonidan\env\Python38-64\lib\locale.py", line 591, in getlocale > return _parse_localename(localename) > File "C:\flonidan\env\Python38-64\lib\locale.py", line 499, in > _parse_localename > raise ValueError('unknown locale: %s' % localename) > ValueError: unknown locale: en_DE
The locale module does not know this encoding, so cannot guess the encoding. Since getlocale() returns the language code and encoding, this fails. If you add the encoding, you should be fine: >>> locale.setlocale(locale.LC_ALL, 'en_DE.UTF-8') 'en_DE.UTF-8' >>> locale.getlocale() ('en_DE', 'UTF-8') -- Marc-Andre Lemburg eGenix.com _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com