Merge "Add __ne__ built-in function for murano"

This commit is contained in:
Jenkins
2016-09-05 08:39:00 +00:00
committed by Gerrit Code Review

View File

@@ -126,6 +126,9 @@ class MuranoTypeReference(object):
return False
return self.type == other.type
def __ne__(self, other):
return not self.__eq__(other)
def __hash__(self):
return hash(self.type)