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 mark.dickinson
Recipients mark.dickinson, skrah
Date 2009-10-03.15:30:52
SpamBayes Score 0.029856
Marked as misclassified No
Message-id <1254583853.97.0.723085574961.issue7047@psf.upfronthosting.co.za>
In-reply-to
Content
This is essentially the same issue as issue 7046:  the relevant lines in 
decimal.py read:

    if d._isnan() and len(d._int) > self.prec - self._clamp:
        return self._raise_error(ConversionSyntax,
                                     "diagnostic info too long in NaN")

and again, the Context._raise_error method translates the 
ConversionSyntax exceptional condition to the corresponding 
InvalidOperation signal.

Closing as a duplicate, just so we can keep everything one place.
History
Date User Action Args
2009-10-03 15:30:55mark.dickinsonsetrecipients: + mark.dickinson, skrah
2009-10-03 15:30:53mark.dickinsonsetmessageid: <1254583853.97.0.723085574961.issue7047@psf.upfronthosting.co.za>
2009-10-03 15:30:52mark.dickinsonlinkissue7047 messages
2009-10-03 15:30:52mark.dickinsoncreate