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 skrah
Recipients hac.man, mark.dickinson, python-dev, rhettinger, skrah
Date 2012-09-11.06:55:47
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <20120911065548.GA26639@sleipnir.bytereef.org>
In-reply-to <1347132407.81.0.728702066463.issue15882@psf.upfronthosting.co.za>
Content
Thanks for the report and the patch. I used another approach that still
validates the digits in the coefficient tuple even if it is not used.

decimal.py allows any coefficient:

>>> Decimal((0, ('n', 'a', 'n'), 'F'))
Decimal('Infinity')

_decimal raises:

>>> Decimal((0, ('n', 'a', 'n'), 'F'))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: coefficient must be a tuple of digits

I'm leaving the issue open: If some release blocker arises, we could get this
into 3.3.0-rc3.
History
Date User Action Args
2012-09-11 06:55:48skrahsetrecipients: + skrah, rhettinger, mark.dickinson, python-dev, hac.man
2012-09-11 06:55:48skrahlinkissue15882 messages
2012-09-11 06:55:47skrahcreate