How would the value equality operator deal with recursive objects?
class Foo:
def __init__(self):
self.foo = selfSeems to me that it would take atleast some special-casing to get Foo() == Foo() to evalute to True in this case... -- mvh Björn _______________________________________________ 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
