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 josh-sf
Recipients
Date 2005-01-12.14:53:01
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Alllow creating new datetime objects by parsing date
strings.

datetime already has strftime, so adding strptime is
logical.

The new constructor is equivalent to
datetime(*(time.strptime(date_string, format)[0:6])).

Patch includes documentation and unit test.
History
Date User Action Args
2007-08-23 15:41:15adminlinkissue1100942 messages
2007-08-23 15:41:15admincreate