From: Peter Moody Date: Mon, 21 Oct 2013 23:16:51 +0000 (-0700) Subject: #17400; NEWS and ipaddress.rst change X-Git-Tag: v3.4.0b1~571^2~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ed30c15e8491ba70ee1cc89acec569c72b2ce26;p=thirdparty%2FPython%2Fcpython.git #17400; NEWS and ipaddress.rst change --- diff --git a/Doc/library/ipaddress.rst b/Doc/library/ipaddress.rst index 769af7276930..7336204d6d38 100644 --- a/Doc/library/ipaddress.rst +++ b/Doc/library/ipaddress.rst @@ -158,10 +158,13 @@ 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 + .. attribute:: is_global ``True`` if the address is allocated for private networks. See - :RFC:`1918` (for IPv4) or :RFC:`4193` (for IPv6). + iana-ipv4-special-registry (for IPv4) or iana-ipv6-special-registry + (for IPv6). + + .. versionadded:: 3.4 .. attribute:: is_unspecified diff --git a/Misc/NEWS b/Misc/NEWS index f60bbd181d5c..84f6e2c9bbb6 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -16,6 +16,8 @@ Core and Builtins Library ------- +- Issue #17400: ipaddress should make it easy to identify rfc6598 addresses. + - Load SSL's error strings in hashlib. - Issue #18527: Upgrade internal copy of zlib to 1.2.8.