Kaydet (Commit) 2504b7a0 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

must provide this method

üst e099b374
...@@ -132,6 +132,9 @@ class OrderedDict(dict, MutableMapping): ...@@ -132,6 +132,9 @@ class OrderedDict(dict, MutableMapping):
all(p==q for p, q in zip(self.items(), other.items())) all(p==q for p, q in zip(self.items(), other.items()))
return dict.__eq__(self, other) return dict.__eq__(self, other)
def __ne__(self, other):
return not self == other
################################################################################ ################################################################################
......
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