bpo-20825: Containment test for ip_network in ip_network. Patch by Michel Albert. by csabella · Pull Request #4065 · python/cpython (original) (raw)
@classmethod def _is_subnet_of(cls, a, b): # Implementation here
def subnet_of(self, other): return self._is_subnet_of(self, other)
def supernet_of(self, other): return self._is_subnet_of(other, self)