Return True if this network is a supernet of other.
(self, other)
| 1041 | return self._is_subnet_of(self, other) |
| 1042 | |
| 1043 | def supernet_of(self, other): |
| 1044 | """Return True if this network is a supernet of other.""" |
| 1045 | return self._is_subnet_of(other, self) |
| 1046 | |
| 1047 | @property |
| 1048 | def is_reserved(self): |