Author mike.verdone
Recipients bseiwald, mike.verdone, tim_one
Date 2007-11-06.18:34:30
SpamBayes Score 0.458244
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.458244
recipients: + mike.verdone, tim_one, 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