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 ocean-city
Recipients ocean-city
Date 2007-09-20.16:26:57
SpamBayes Score 0.002374418
Marked as misclassified No
Message-id <1190305618.56.0.684353803069.issue1182@psf.upfronthosting.co.za>
In-reply-to
Content
Following code illegally print "NaN" on Python2.5.

from decimal import *
d1 = Decimal("23.08589694291355371979265447")
d2 = Decimal("2.302585092994045640179914546844")
print d1 % d2

Python2.6(trunk) print 0.06004601297309731799350900156
History
Date User Action Args
2007-09-20 16:26:58ocean-citysetspambayes_score: 0.00237442 -> 0.002374418
recipients: + ocean-city
2007-09-20 16:26:58ocean-citysetspambayes_score: 0.00237442 -> 0.00237442
messageid: <1190305618.56.0.684353803069.issue1182@psf.upfronthosting.co.za>
2007-09-20 16:26:58ocean-citylinkissue1182 messages
2007-09-20 16:26:57ocean-citycreate