diff options
author | Peter Moody <python@hda3.com> | 2013-10-24 16:47:10 (GMT) |
---|---|---|
committer | Peter Moody <python@hda3.com> | 2013-10-24 16:47:10 (GMT) |
commit | e5019d5183041f4f75cf4a30b2dc84eed347425e (patch) | |
tree | 49e012e5492c1c70690ab72a8d03a980047148b5 /Doc/library/ipaddress.rst | |
parent | a46079e85394c4c6fa5a5a1a462eca8e38b85a42 (diff) | |
download | cpython-e5019d5183041f4f75cf4a30b2dc84eed347425e.zip cpython-e5019d5183041f4f75cf4a30b2dc84eed347425e.tar.gz cpython-e5019d5183041f4f75cf4a30b2dc84eed347425e.tar.bz2 |
#17400: correct handling of 100.64.0.0/10, fixing the docs and updating NEWS
Diffstat (limited to 'Doc/library/ipaddress.rst')
-rw-r--r-- | Doc/library/ipaddress.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/ipaddress.rst b/Doc/library/ipaddress.rst index af1b3b8..826e4aa 100644 --- a/Doc/library/ipaddress.rst +++ b/Doc/library/ipaddress.rst @@ -158,6 +158,12 @@ write code that handles both IP versions correctly. ``True`` if the address is reserved for multicast use. See :RFC:`3171` (for IPv4) or :RFC:`2373` (for IPv6). + .. attribute:: is_private + + ``True`` if the address is allocated for private networks. See + iana-ipv4-special-registry (for IPv4) or iana-ipv6-special-registry + (for IPv6). + .. attribute:: is_global ``True`` if the address is allocated for public networks. See |