def __repr__(self):
return str(self)
+ def __cmp__(self, other):
+ return cmp(self.as_tuple(), other.as_tuple())
+
def as_tuple(obj):
r"""as_tuple(obj) -> tuple :: Convert objects to tuple.
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,
if src_net is not None: self.src_net = src_net
if dst_net is not None: self.dst_net = dst_net
- def __cmp__(self, other):
- r"Compares two PortForward objects."
- return cmp(self.as_tuple(), other.as_tuple())
-
def as_tuple(self):
r"Return a tuple representing the port forward."
return (self.dev, self.protocol, self.port, self.dst, self.dst_port,