19
Python yerel ayarı hatası: desteklenmeyen yerel ayar
Python bunu yaparken neden aşağıdaki hatayı alıyorum: >>> import locale >>> print str( locale.getlocale() ) (None, None) >>> locale.setlocale(locale.LC_ALL, 'de_DE') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python2.7/locale.py", line 531, in setlocale return _setlocale(category, locale) locale.Error: unsupported locale setting Bu, fr veya nl gibi diğer …
317
python
locale
ubuntu-11.04