aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
>ccaa279a
48580e7c

53f9a0f8


48580e7c



53f9a0f8

48580e7c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63