--- axiom/item.py.orig 2010-01-14 14:42:26.000000000 +0100
+++ axiom/item.py 2010-01-14 14:42:58.000000000 +0100
(other.typeName, other.schemaVersion))
+ def __lt__(self, other):
+ if isinstance(other, MetaItem):
+ return (self.typeName, self.schemaVersion) < (other.typeName, other.schemaVersion)
+ def __gt__(self, other):
+ if isinstance(other, MetaItem):
+ return (self.typeName, self.schemaVersion) > (other.typeName, other.schemaVersion)
+ def __le__(self, other):
+ if isinstance(other, MetaItem):
+ return (self.typeName, self.schemaVersion) <= (other.typeName, other.schemaVersion)
+ def __ge__(self, other):
+ if isinstance(other, MetaItem):
+ return (self.typeName, self.schemaVersion) >= (other.typeName, other.schemaVersion)
+ def __eq__(self, other):
+ if isinstance(other, MetaItem):
+ return (self.typeName, self.schemaVersion) == (other.typeName, other.schemaVersion)
+ def __ne__(self, other):
+ if isinstance(other, MetaItem):
+ return (self.typeName, self.schemaVersion) != (other.typeName, other.schemaVersion)