aboutsummaryrefslogtreecommitdiff
path: root/scripts/rpki
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/rpki')
-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