New submission from vincent.chute <[EMAIL PROTECTED]>: import locale locale.setlocale( locale.LC_ALL, u'ja_JP.utf8') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python2.5/locale.py", line 475, in setlocale locale = normalize(_build_localename(locale)) File "/usr/lib/python2.5/locale.py", line 383, in _build_localename language, encoding = localetuple ValueError: too many values to unpack
The problem is line 473: if locale and type(locale) is not type(""): Replacing this with if locale and not isinstance(locale, basestring): fixes the problem. ---------- components: Library (Lib) messages: 67861 nosy: vincent.chute severity: normal status: open title: setlocale Tracebacks on unicode locale strings versions: Python 2.5 _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3067> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com