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 mike.verdone
Recipients bseiwald, mike.verdone, tim.peters
Date 2007-11-06.18:34:30
SpamBayes Score 0.45824373
Marked as misclassified No
Message-id <1194374070.69.0.680152515736.issue737648@psf.upfronthosting.co.za>
In-reply-to
Content
For the benefit of those who stumble here through Google, here's a
workaround I've discovered for NaN testing. This is BAD:

value == float('NaN')

But this seems to work ok:

str(value) == str(float('NaN'))
History
Date User Action Args
2007-11-06 18:34:30mike.verdonesetspambayes_score: 0.458244 -> 0.45824373
recipients: + mike.verdone, tim.peters, bseiwald
2007-11-06 18:34:30mike.verdonesetspambayes_score: 0.458244 -> 0.458244
messageid: <1194374070.69.0.680152515736.issue737648@psf.upfronthosting.co.za>
2007-11-06 18:34:30mike.verdonelinkissue737648 messages
2007-11-06 18:34:30mike.verdonecreate