Message117274
> Not sure it's related, but there seems to be a bug:
It's not a bug, it's a feature :-) If you specify a non-existing locale, the
GNU libc fails back to ascii.
$ locale -a
C
français
french
fr_FR
fr_FR@euro
fr_FR.iso88591
fr_FR.iso885915@euro
fr_FR.utf8
$ LC_CTYPE=fr_FR.iso88591 ./python -c "import locale;
print(locale.nl_langinfo(locale.CODESET))"
ISO-8859-1
$ LC_CTYPE=xxx ./python -c "import locale;
print(locale.nl_langinfo(locale.CODESET))"
ANSI_X3.4-1968 |
|
Date |
User |
Action |
Args |
2010-09-24 12:15:32 | vstinner | set | recipients:
+ vstinner, lemburg, amaury.forgeotdarc, pitrou, Arfrever |
2010-09-24 12:15:31 | vstinner | link | issue9630 messages |
2010-09-24 12:15:31 | vstinner | create | |
|