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 pitrou
Recipients barry-scott, ezio.melotti, pitrou
Date 2009-05-02.15:13:46
SpamBayes Score 1.2237273e-08
Marked as misclassified No
Message-id <1241277227.66.0.290555194714.issue5903@psf.upfronthosting.co.za>
In-reply-to
Content
Well, it turns out that strftime() is buggy as well:

>>> tp = time.strptime("2009-12-01", "%Y-%m-%d")
>>> locale.setlocale(locale.LC_TIME, "fr_FR.ISO8859-15")
'fr_FR.ISO8859-15'
>>> time.strftime("%B", tp)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeDecodeError: 'utf8' codec can't decode bytes in position 1-3:
invalid data
History
Date User Action Args
2009-05-02 15:13:47pitrousetrecipients: + pitrou, barry-scott, ezio.melotti
2009-05-02 15:13:47pitrousetmessageid: <1241277227.66.0.290555194714.issue5903@psf.upfronthosting.co.za>
2009-05-02 15:13:46pitroulinkissue5903 messages
2009-05-02 15:13:46pitroucreate