Return True if this network is a supernet of other.
(self, 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.""" |
| 1048 | return self._is_subnet_of(other, self) |
| 1049 | |
| 1050 | @property |
| 1051 | def is_reserved(self): |