[issue1182] Paticular decimal mod operation wrongly output NaN.

Mark Dickinson report at bugs.python.org
Mon Sep 24 16:51:04 CEST 2007



					Mark Dickinson
				 added the comment:

There's a bug on line 1341 of decimal.py.  That line currently reads:

otherside = otherside._rescale(exp, context=context)

It should read:

otherside = otherside._rescale(exp, context=context, watchexp=0)

----------
nosy: +marketdickinson

__________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue1182>
__________________________________


More information about the Python-bugs-list mailing list