]> git.llucax.com Git - software/pymin.git/blobdiff - pymin/services/firewall/__init__.py
Add a default __cmp__() implementation to pymin.seqtool.Sequence.
[software/pymin.git] / pymin / services / firewall / __init__.py
index c13ad010f18e2fc751e98fa0a2de80ef13d7e240..90d3ee9e44b662517db577e36ed8a4a5d76e8399 100644 (file)
@@ -61,10 +61,6 @@ class Rule(Sequence):
         if src_port is not None: self.src_port = src_port
         if dst_port is not None: self.dst_port = dst_port
 
-    def __cmp__(self, other):
-        r"Compares two Rule objects."
-        return cmp(self.as_tuple(), other.as_tuple())
-
     def as_tuple(self):
         r"Return a tuple representing the rule."
         return (self.chain, self.target, self.src, self.dst, self.protocol,