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 exarkun
Recipients exarkun
Date 2009-12-01.02:02:58
SpamBayes Score 0.0039872075
Marked as misclassified No
Message-id <1259632981.58.0.493446472024.issue7413@psf.upfronthosting.co.za>
In-reply-to
Content
Passing NUL as the separator to isoformat drops the time part of the
result entirely:

>>> import datetime
>>> datetime.datetime.today().isoformat()
'2009-11-30T20:57:37.918750'
>>> datetime.datetime.today().isoformat('x')
'2009-11-30x20:57:39.902573'
>>> datetime.datetime.today().isoformat('\0')
'2009-11-30'
>>>
History
Date User Action Args
2009-12-01 02:03:02exarkunsetrecipients: + exarkun
2009-12-01 02:03:01exarkunsetmessageid: <1259632981.58.0.493446472024.issue7413@psf.upfronthosting.co.za>
2009-12-01 02:02:59exarkunlinkissue7413 messages
2009-12-01 02:02:58exarkuncreate