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 t.steinruecken
Recipients t.steinruecken
Date 2009-03-01.12:39:59
SpamBayes Score 2.5984527e-06
Marked as misclassified No
Message-id <1235911202.21.0.141647308098.issue5398@psf.upfronthosting.co.za>
In-reply-to
Content
import locale
import datetime

locale.setlocale(locale.LC_ALL, ('de_DE', 'UTF8'))
print u""+datetime.datetime( 2009, 3, 1 ).strftime("%B")
--------------------------------------
Traceback (most recent call last):
    print u""+datetime.datetime( 2009, 3, 1 ).strftime("%B")
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 1:
ordinal not in range(128)
History
Date User Action Args
2009-03-01 12:40:02t.steinrueckensetrecipients: + t.steinruecken
2009-03-01 12:40:02t.steinrueckensetmessageid: <1235911202.21.0.141647308098.issue5398@psf.upfronthosting.co.za>
2009-03-01 12:40:00t.steinrueckenlinkissue5398 messages
2009-03-01 12:39:59t.steinrueckencreate