> Modified: python/branches/py3k/Lib/_abcoll.py
> ==============================================================================
> --- python/branches/py3k/Lib/_abcoll.py (original)
> +++ python/branches/py3k/Lib/_abcoll.py Mon Feb 4 21:44:31 2008
> @@ -378,6 +378,11 @@
> def values(self):
> return ValuesView(self)
>
> + def __eq__(self, other):
> + return set(self) == set(other)
> +
> + def __ne__(self, other):
> + return set(self) == set(other)
Was that meant to be != in the __ne__ implementation?
Cheers,
Nick.
--
Nick Coghlan | [EMAIL PROTECTED] | Brisbane, Australia
---------------------------------------------------------------
http://www.boredomandlaziness.org
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins