[Python-checkins] cpython (3.1): Hmm, __ne__ was missing

raymond.hettinger python-checkins at python.org
Tue Apr 19 20:15:35 CEST 2011


http://hg.python.org/cpython/rev/15afaf8aa155
changeset:   69444:15afaf8aa155
branch:      3.1
user:        Raymond Hettinger <python at rcn.com>
date:        Tue Apr 19 10:05:53 2011 -0700
summary:
  Hmm, __ne__ was missing

files:
  Lib/collections.py |  1 +
  1 files changed, 1 insertions(+), 0 deletions(-)


diff --git a/Lib/collections.py b/Lib/collections.py
--- a/Lib/collections.py
+++ b/Lib/collections.py
@@ -112,6 +112,7 @@
     keys = MutableMapping.keys
     values = MutableMapping.values
     items = MutableMapping.items
+    __ne__ = MutableMapping.__ne__
 
     __marker = object()
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list