Merge "Add __ne__ built-in function"

This commit is contained in:
Jenkins 2016-11-23 10:10:36 +00:00 committed by Gerrit Code Review
commit c108621d2f
1 changed files with 3 additions and 0 deletions

View File

@ -521,6 +521,9 @@ class Resource(object):
return self.id == other.id
return self._info == other._info
def __ne__(self, other):
return not self.__eq__(other)
def is_loaded(self):
return self._loaded