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 eric.smith
Recipients JordanS, eric.smith
Date 2010-01-26.19:44:01
SpamBayes Score 0.00045935533
Marked as misclassified No
Message-id <[email protected]>
In-reply-to
Content
datetime.datetime passes its format string to strftime:

>>> import datetime
>>> x = datetime.datetime(2001, 1, 2, 3, 4)
>>> x.strftime('%Y-%m-%d')
'2001-01-02'
>>> '{0:%Y-%m-%d}'.format(x)
'2001-01-02'

I'll check to make sure this is documented.
History
Date User Action Args
2010-01-26 19:44:02eric.smithsetrecipients: + eric.smith, JordanS
2010-01-26 19:44:02eric.smithsetmessageid: <[email protected]>
2010-01-26 19:44:01eric.smithlinkissue7789 messages
2010-01-26 19:44:01eric.smithcreate