Mike Verdone added the comment:
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'))
----------
nosy: +mike.verdone
title: Error on handling nan -> Error on handling nan
____________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue737648>
____________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com