Return True if this network is a subnet of other.
(self, other)
| 1040 | f"between {a} and {b}") |
| 1041 | |
| 1042 | def subnet_of(self, other): |
| 1043 | """Return True if this network is a subnet of other.""" |
| 1044 | return self._is_subnet_of(self, other) |
| 1045 | |
| 1046 | def supernet_of(self, other): |
| 1047 | """Return True if this network is a supernet of other.""" |