aboutsummaryrefslogtreecommitdiff
path: root/scripts/rpki/resource_set.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2007-10-07 21:10:55 +0000
committerRob Austein <sra@hactrn.net>2007-10-07 21:10:55 +0000
commit6ffef4831ed73701d57476d81d49c4beeb212e6a (patch)
treeeb77bf1b2f3f06dbd2d6d9a113608b66d80780b0 /scripts/rpki/resource_set.py
parentc86c58f8c3a902ad3e546d8056b6fe6fc1384d1e (diff)
Doc
svn path=/scripts/rpki/resource_set.py; revision=1114
Diffstat (limited to 'scripts/rpki/resource_set.py')
-rw-r--r--scripts/rpki/resource_set.py4
1 files changed, 2 insertions, 2 deletions
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