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 vstinner
Recipients belopolsky, cvrebert, elixir, ezio.melotti, gvanrossum, jerry.elmore, lemburg, r.david.murray, skip.montanaro, terry.reedy, tim.peters, vstinner
Date 2015-07-24.09:53:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1437731602.55.0.218529487768.issue19475@psf.upfronthosting.co.za>
In-reply-to
Content
> 'seconds' - %H:%M:%S
> 'us' - %H:%M:%S.%f

'us' is not consistent with the datetime module: it should be 'microseconds.

>>> datetime.datetime.now().second
50
>>> datetime.timedelta(seconds=1)
datetime.timedelta(0, 1)

>>> datetime.datetime.now().microsecond
123710
>>> datetime.timedelta(microseconds=1)
datetime.timedelta(0, 0, 1)
History
Date User Action Args
2015-07-24 09:53:22vstinnersetrecipients: + vstinner, lemburg, gvanrossum, tim.peters, skip.montanaro, terry.reedy, belopolsky, ezio.melotti, r.david.murray, cvrebert, elixir, jerry.elmore
2015-07-24 09:53:22vstinnersetmessageid: <1437731602.55.0.218529487768.issue19475@psf.upfronthosting.co.za>
2015-07-24 09:53:22vstinnerlinkissue19475 messages
2015-07-24 09:53:22vstinnercreate