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 meonkeys
Recipients
Date 2005-09-01.20:06:03
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Trying to parse a German date string fails in Python
2.4.1. Test case attached.

Since there's no indenting, I suppose the test case can
also be pasted here:

import locale, time
locale.setlocale(locale.LC_TIME, 'de_DE')
date = u'10. September 2005 um 17:26'
format = '%d. %B %Y um %H:%M'
time.strptime(date, format)

--
Adam Monsen
http://adammonsen.com/
History
Date User Action Args
2007-08-23 14:34:10adminlinkissue1280061 messages
2007-08-23 14:34:10admincreate