diff options
author | Raymond Hettinger <python@rcn.com> | 2011-04-19 10:05:53 -0700 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-04-19 10:05:53 -0700 |
commit | ab694380466be70294aa8e5b99b10e9f0c48b3bf (patch) | |
tree | 312addde986a3aad56668fa2d30dc3700ebcd664 | |
parent | d08a2c2576457b7d0229a00b4977044a38ad0d68 (diff) | |
download | cpython-git-ab694380466be70294aa8e5b99b10e9f0c48b3bf.tar.gz |
Hmm, __ne__ was missing
-rw-r--r-- | Lib/collections.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/collections.py b/Lib/collections.py index 9381f51676..5ae590763b 100644 --- a/Lib/collections.py +++ b/Lib/collections.py @@ -112,6 +112,7 @@ class OrderedDict(dict): keys = MutableMapping.keys values = MutableMapping.values items = MutableMapping.items + __ne__ = MutableMapping.__ne__ __marker = object() |