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 loewis
Recipients brian.curtin, jkloth, loewis, pitrou, python-dev, steve.dower, tim.golden, tim.peters
Date 2013-11-23.03:52:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385178740.89.0.200432197515.issue19715@psf.upfronthosting.co.za>
In-reply-to
Content
One "obvious" conversion error is this code from 

http://hg.python.org/cpython/file/4101bfaa76fe/Python/pytime.c#l35

microseconds = large.QuadPart / 10 - 11644473600000000;

This discard the 100ns part of the current time, rounding it down to the previous microsecond. As a result, the second time stamp can be up to a microsecond earlier than the previous one.
History
Date User Action Args
2013-11-23 03:52:21loewissetrecipients: + loewis, tim.peters, pitrou, tim.golden, jkloth, brian.curtin, python-dev, steve.dower
2013-11-23 03:52:20loewissetmessageid: <1385178740.89.0.200432197515.issue19715@psf.upfronthosting.co.za>
2013-11-23 03:52:20loewislinkissue19715 messages
2013-11-23 03:52:20loewiscreate