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 schlamar
Recipients alex, belopolsky, daniel.urban, mark.dickinson, rhettinger, schlamar
Date 2013-02-18.11:28:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1361186926.61.0.50985323929.issue11949@psf.upfronthosting.co.za>
In-reply-to
Content
I'm +1 for a warning. The current behavior is really unexpectable:

In [6]: sorted([nan, 0, 1, -1])
Out[6]: [nan, -1, 0, 1]

In [7]: sorted([0, 1, -1, nan])
Out[7]: [-1, 0, 1, nan]

In [8]: sorted([0, nan, 1, -1])
Out[8]: [0, nan, -1, 1]
History
Date User Action Args
2013-02-18 11:28:46schlamarsetrecipients: + schlamar, rhettinger, mark.dickinson, belopolsky, alex, daniel.urban
2013-02-18 11:28:46schlamarsetmessageid: <1361186926.61.0.50985323929.issue11949@psf.upfronthosting.co.za>
2013-02-18 11:28:46schlamarlinkissue11949 messages
2013-02-18 11:28:46schlamarcreate