[issue20793] locale.setlocale()
René Fleschenberg added the comment: I see. Thanks for the information. -- ___ Python tracker <http://bugs.python.org/issue20793> ___ ___ Python-bugs-list mailin
[issue20793] locale.setlocale()
New submission from René Fleschenberg: locale.setlocale() does not work if you pass it a ``unicode`` object instead of a ``str`` (locale.py, line 576): ``if locale and type(locale) is not type(""):`` Maybe it would be better to do a check like this? ``if locale and not