Merge "Add __ne__ built-in function"

This commit is contained in:
Jenkins 2016-12-21 01:49:37 +00:00 committed by Gerrit Code Review
commit 2de509a974

@ -77,3 +77,6 @@ class SubDictMatch(object):
def __eq__(self, super_dict):
return all(item in super_dict.items()
for item in self.sub_dict.items())
def __ne__(self, super_dict):
return not self.__eq__(super_dict)