Commit c4b78a3e authored by Hynek Schlawack's avatar Hynek Schlawack

#14814: Remove 2.x's new-style classes syntax from ipaddress

parent 67ee1d05
......@@ -400,7 +400,7 @@ def get_mixed_type_key(obj):
return NotImplemented
class _IPAddressBase(object):
class _IPAddressBase:
"""The mother class."""
......@@ -975,7 +975,7 @@ class _BaseNetwork(_IPAddressBase):
return t.__class__('%s/%d' % (str(t.network_address), t.prefixlen))
class _BaseV4(object):
class _BaseV4:
"""Base IPv4 object.
......@@ -1511,7 +1511,7 @@ class IPv4Network(_BaseV4, _BaseNetwork):
return '%s/%s' % (str(self.network_address), str(self.hostmask))
class _BaseV6(object):
class _BaseV6:
"""Base IPv6 object.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment