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 giampaolo.rodola
Recipients benjamin.peterson, georg.brandl, giampaolo.rodola, larry, neologix, pitrou, sbt, sultanqasim
Date 2013-04-14.21:29:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1365974953.9.0.670079047623.issue17707@psf.upfronthosting.co.za>
In-reply-to
Content
Yeah, right. Too strict indeed. I'll get rid of the assertLessEqual statement.
Here's why Decimal is necessary:

>>> import time
>>> time.time() - time.time()
-9.5367431640625e-07
>>> from decimal import Decimal
>>> Decimal(time.time()) - Decimal(time.time())
Decimal('-0.000069141387939453125')
History
Date User Action Args
2013-04-14 21:29:13giampaolo.rodolasetrecipients: + giampaolo.rodola, georg.brandl, pitrou, larry, benjamin.peterson, neologix, sbt, sultanqasim
2013-04-14 21:29:13giampaolo.rodolasetmessageid: <1365974953.9.0.670079047623.issue17707@psf.upfronthosting.co.za>
2013-04-14 21:29:13giampaolo.rodolalinkissue17707 messages
2013-04-14 21:29:13giampaolo.rodolacreate