Commit ab694380 authored by Raymond Hettinger's avatar Raymond Hettinger

Hmm, __ne__ was missing

parent d08a2c25
......@@ -112,6 +112,7 @@ class OrderedDict(dict):
keys = MutableMapping.keys
values = MutableMapping.values
items = MutableMapping.items
__ne__ = MutableMapping.__ne__
__marker = object()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment