This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezio.melotti
Recipients barry-scott, ezio.melotti
Date 2009-05-02.13:35:32
SpamBayes Score 1.0242694e-05
Marked as misclassified No
Message-id <1241271335.27.0.0447981592881.issue5903@psf.upfronthosting.co.za>
In-reply-to
Content
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'>
History
Date User Action Args
2009-05-02 13:35:36ezio.melottisetrecipients: + ezio.melotti, barry-scott
2009-05-02 13:35:35ezio.melottisetmessageid: <1241271335.27.0.0447981592881.issue5903@psf.upfronthosting.co.za>
2009-05-02 13:35:33ezio.melottilinkissue5903 messages
2009-05-02 13:35:33ezio.melotticreate