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 tim.peters
Recipients loewis, pitrou, tim.peters, vstinner
Date 2013-11-23.22:02:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385244163.87.0.346452583585.issue19738@psf.upfronthosting.co.za>
In-reply-to
Content
Just noting for the record that a C double (time.time() result) isn't quite enough to hold a full-precision Windows time regardless:

>>> from datetime import date
>>> d = date.today() - date(1970, 1, 1)
>>> s = int(d.total_seconds())  # seconds into "the epoch"
>>> s *= 10**7  # number of 100ns into the epoch
>>> s.bit_length()
54
>>> 54 > 53  # QED ;-)
True
History
Date User Action Args
2013-11-23 22:02:43tim.peterssetrecipients: + tim.peters, loewis, pitrou, vstinner
2013-11-23 22:02:43tim.peterssetmessageid: <1385244163.87.0.346452583585.issue19738@psf.upfronthosting.co.za>
2013-11-23 22:02:43tim.peterslinkissue19738 messages
2013-11-23 22:02:43tim.peterscreate