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.11:42:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385206950.31.0.674898590795.issue19715@psf.upfronthosting.co.za>
In-reply-to
Content
> AssertionError: 1385161652120374900 not greater than or equal to
> 1385161652120375500
> Anything coming from T() would have "000" at the end, not "900" or "500". 

But "900" *is* "000" :-) 

A. t1=t2=1385161652120375500
B. pygettimeofday truncates this to 1385161652.120375
C. time.time() converts this to float, yielding
   0x1.4a3f8ed07b439p+30 i.e.
   (0.6450161580556887, 31)
   1385161652.120375 (really .1203749566283776)
D. _PyTime_ObjectToDenominator converts this to 
   1385161652.120374917
E. time_t_to_FILE_TIME convert this to 
   1385161652.120374900
History
Date User Action Args
2013-11-23 11:42:30loewissetrecipients: + loewis, tim.peters, pitrou, tim.golden, jkloth, brian.curtin, python-dev, steve.dower
2013-11-23 11:42:30loewissetmessageid: <1385206950.31.0.674898590795.issue19715@psf.upfronthosting.co.za>
2013-11-23 11:42:30loewislinkissue19715 messages
2013-11-23 11:42:30loewiscreate