[Python-checkins] cpython: #17400; NEWS and ipaddress.rst change

peter.moody python-checkins at python.org
Tue Oct 22 01:17:04 CEST 2013


http://hg.python.org/cpython/rev/07a5610bae9d
changeset:   86554:07a5610bae9d
user:        Peter Moody <python at hda3.com>
date:        Mon Oct 21 16:16:51 2013 -0700
summary:
  #17400; NEWS and ipaddress.rst change

files:
  Doc/library/ipaddress.rst |  7 +++++--
  Misc/NEWS                 |  2 ++
  2 files changed, 7 insertions(+), 2 deletions(-)


diff --git a/Doc/library/ipaddress.rst b/Doc/library/ipaddress.rst
--- a/Doc/library/ipaddress.rst
+++ b/Doc/library/ipaddress.rst
@@ -158,10 +158,13 @@
       ``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
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,8 @@
 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.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list