From 6ffef4831ed73701d57476d81d49c4beeb212e6a Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Sun, 7 Oct 2007 21:10:55 +0000 Subject: Doc svn path=/scripts/rpki/resource_set.py; revision=1114 --- scripts/rpki/resource_set.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/rpki/resource_set.py') diff --git a/scripts/rpki/resource_set.py b/scripts/rpki/resource_set.py index 705b0ac7..b57d3424 100644 --- a/scripts/rpki/resource_set.py +++ b/scripts/rpki/resource_set.py @@ -209,14 +209,14 @@ class resource_set(list): return False def issubset(self, other): - """Test whether self is a subset of other.""" + """Test whether self is a subset (possibly improper) of other.""" for i in self: if not other.contains(i): return False return True def issuperset(self, other): - """Test whether self is a superset of other.""" + """Test whether self is a superset (possibly improper) of other.""" return other.issubset(self) @classmethod -- cgit v1.2.3