Tim Peters added the comment: 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 ---------- _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue19738> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com