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 christian.heimes, mark.dickinson, mikecurtis
Date 2008-11-11.10:57:40
SpamBayes Score 2.775514e-07
Marked as misclassified No
Message-id <1226401061.75.0.0595105231096.issue4296@psf.upfronthosting.co.za>
In-reply-to
Content
One more data point:  in both 2.x and 3.x, sets behave like the 2.x 
lists:

Python 3.0rc2+ (py3k:67177M, Nov 10 2008, 16:06:34) 
[GCC 4.0.1 (Apple Inc. build 5488)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> s = {float('nan')}
>>> s == s
True
>>> s is s
True
History
Date User Action Args
2008-11-11 10:57:41mark.dickinsonsetrecipients: + mark.dickinson, christian.heimes, mikecurtis
2008-11-11 10:57:41mark.dickinsonsetmessageid: <1226401061.75.0.0595105231096.issue4296@psf.upfronthosting.co.za>
2008-11-11 10:57:41mark.dickinsonlinkissue4296 messages
2008-11-11 10:57:40mark.dickinsoncreate