diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-05-20 11:01:57 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-05-20 11:01:57 (GMT) |
commit | dc9b2555a8752d70f1e4a6d3f5cc0ce8046b3d00 (patch) | |
tree | fa0984e07d308c43b1947d18815cffc1535efe44 /Doc | |
parent | 7db768cf0e56520155732def9c320b87cb90fe0f (diff) | |
download | cpython-dc9b2555a8752d70f1e4a6d3f5cc0ce8046b3d00.zip cpython-dc9b2555a8752d70f1e4a6d3f5cc0ce8046b3d00.tar.gz cpython-dc9b2555a8752d70f1e4a6d3f5cc0ce8046b3d00.tar.bz2 |
Issue #14814: addition of the ipaddress module (stage 1 - code and tests)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.3.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.3.rst b/Doc/whatsnew/3.3.rst index 08823e0..9afd8ae 100644 --- a/Doc/whatsnew/3.3.rst +++ b/Doc/whatsnew/3.3.rst @@ -851,6 +851,15 @@ already exists. It is based on the C11 'x' mode to fopen(). (Contributed by David Townshend in :issue:`12760`) +ipaddress +--------- + +The new :mod:`ipaddress` module provides tools for creating and manipulating +objects representing IPv4 and IPv6 addresses, networks and interfaces (i.e. +an IP address associated with a specific IP subnet). + +(Contributed by Google and Peter Moody in :pep:`3144`) + lzma ---- |