On Fri, Apr 29, 2011 at 5:51 AM, Raymond Hettinger
<[email protected]> wrote:
> *  x = obj implies x == obj   # assignment really works

While I agree with your point of view regarding the status quo as a
useful, practical compromise, I need to call out that particular
example:

>>> nan = float('nan')
>>> x = nan
>>> x == nan
False
>>> x in locals().values()
True

Due to rich comparison and the freedom to implement non-reflexive
definitions of "equality", the assignment "x = obj" implies only that:
- x is obj
- x in locals().values()

Cheers,
Nick.

-- 
Nick Coghlan   |   [email protected]   |   Brisbane, Australia
_______________________________________________
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to