Message86947
Here the issue might be different though. Does
$ LC_ALL=ru_RU.koi8-r python3.0 -c 'import time;time.strftime("%A")'
(without the print) work?
I don't have the ru_RU locale but here time.strftime() return 'str', not
'bytes' and the utf-8 codec should be able to encode it:
>>> time.strftime("%A")
'Saturday'
>>> type(_)
<class 'str'> |
|
Date |
User |
Action |
Args |
2009-05-02 13:35:36 | ezio.melotti | set | recipients:
+ ezio.melotti, barry-scott |
2009-05-02 13:35:35 | ezio.melotti | set | messageid: <1241271335.27.0.0447981592881.issue5903@psf.upfronthosting.co.za> |
2009-05-02 13:35:33 | ezio.melotti | link | issue5903 messages |
2009-05-02 13:35:33 | ezio.melotti | create | |
|