This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mjpieters
Recipients mjpieters
Date 2021-05-18.09:07:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1621328856.79.0.268631804552.issue44167@roundup.psfhosted.org>
In-reply-to
Content
ipaddress.IPv6Address.is_private uses a hard-coded list of `IPv6Network` objects that cover private networks to test against.

This list contains two networks that are subnets of a 3rd network in the list. IP addresses that are not private are tested against all 3 networks where only a single test is needed.

The networks in question are:

        IPv6Network('2001::/23'),
        IPv6Network('2001:2::/48'),  # within 2001::/23
        ...
        IPv6Network('2001:10::/28'), # within 2001::/23

The first is a supernet of the other two, so any IP address that is tested against the first and is not part of that network, will also not be part of the other two networks:

>>> from ipaddress import IPv6Network
>>> sub_tla_id = IPv6Network('2001::/23')
>>> sub_tla_id.supernet_of(IPv6Network('2001:2::/48'))
True
>>> sub_tla_id.supernet_of(IPv6Network('2001:10::/28'))
True

We can safely drop these two network entries from the list.

On a separate note: the definition here is inconsistent with IPv4Address's list of private networks. 2001::/23 is the whole subnet reserved for special purpose addresses (RFC 2928), regardless of what ranges have actually been assigned. The IPv4 list on the other hand only contains _actual assignments within the reserved subnet_, not the whole reserved block (RFC 5736 / RFC 6890, reserving 192.0.0.0/24, IPv4Address only considers 192.0.0.0/29 and 192.0.0.170/31). I'll file a separate issue for that if not already reported.
History
Date User Action Args
2021-05-18 09:07:36mjpieterssetrecipients: + mjpieters
2021-05-18 09:07:36mjpieterssetmessageid: <1621328856.79.0.268631804552.issue44167@roundup.psfhosted.org>
2021-05-18 09:07:36mjpieterslinkissue44167 messages
2021-05-18 09:07:36mjpieterscreate