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 mirkovogt
Recipients belopolsky, mirkovogt, r.david.murray
Date 2015-01-27.19:32:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1422387177.48.0.527694500609.issue23332@psf.upfronthosting.co.za>
In-reply-to
Content
Just to clarify my problem - then I'll just happily use datetime.now(tzutc()).isoformat()

 - There is datetime.now() which is supposed to be used (no utcnow() anymore)
 - datetime.now() might return a naive object, when no TZ is specified
 - *However* also the naive variant implements the class isoformat() which is described as "Return a string representing the date in ISO 8601 format"
 - ISO 8601 can and should be understood such as the TZ-designator is required (I think we agreed on that).
 - However isoformat() called on a naive object returns a string with no TZ designator

I would at least suggesting adding a note for isoformat() about being called on naive datetime objects.
History
Date User Action Args
2015-01-27 19:32:57mirkovogtsetrecipients: + mirkovogt, belopolsky, r.david.murray
2015-01-27 19:32:57mirkovogtsetmessageid: <1422387177.48.0.527694500609.issue23332@psf.upfronthosting.co.za>
2015-01-27 19:32:57mirkovogtlinkissue23332 messages
2015-01-27 19:32:57mirkovogtcreate