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 Rhamphoryncus, christian.heimes, gmcastil, gvanrossum, mark.dickinson, tim.peters
Date 2008-01-20.16:33:26
SpamBayes Score 0.025899813
Marked as misclassified No
Message-id <1200846808.16.0.614126845603.issue1640@psf.upfronthosting.co.za>
In-reply-to
Content
whoops.  OverflowError should be something else in the previous post;  of course, 
OverflowError is inappropriate for domain errors (but entirely appropriate for 
something like exp(1000)).

Currently, on Linux I get:
  - overflow (exp(1000))    -> OverflowError
  - domain error (sqrt(-1)) -> ValueError
  - singularity (log(0))    -> OverflowError

On OS X I get:
  - overflow -> OverflowError
  - domain error -> NaN
  - singularity -> OverflowError
History
Date User Action Args
2008-01-20 16:33:28mark.dickinsonsetspambayes_score: 0.0258998 -> 0.025899813
recipients: + mark.dickinson, gvanrossum, tim.peters, Rhamphoryncus, christian.heimes, gmcastil
2008-01-20 16:33:28mark.dickinsonsetspambayes_score: 0.0258998 -> 0.0258998
messageid: <1200846808.16.0.614126845603.issue1640@psf.upfronthosting.co.za>
2008-01-20 16:33:26mark.dickinsonlinkissue1640 messages
2008-01-20 16:33:26mark.dickinsoncreate