summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ipaddress.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-07-11 12:54:44 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-07-11 12:54:44 (GMT)
commit702f4f5d6fdb1a49222bb1e70866717f34c3b847 (patch)
treeae1ee298d781dfd3f0cf82a95d5f1f8175c90fda /Lib/test/test_ipaddress.py
parent7386268ffd5a87ec03f80773c4cd8bf9dc9953f6 (diff)
parent204bf0b9aecd221c33f3e0909f261411783acf1b (diff)
downloadcpython-702f4f5d6fdb1a49222bb1e70866717f34c3b847.zip
cpython-702f4f5d6fdb1a49222bb1e70866717f34c3b847.tar.gz
cpython-702f4f5d6fdb1a49222bb1e70866717f34c3b847.tar.bz2
Issue #23804: Merge spelling and NEWS fixes from 3.5
Diffstat (limited to 'Lib/test/test_ipaddress.py')
-rw-r--r--Lib/test/test_ipaddress.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_ipaddress.py b/Lib/test/test_ipaddress.py
index 6c08f80..2e31f42 100644
--- a/Lib/test/test_ipaddress.py
+++ b/Lib/test/test_ipaddress.py
@@ -734,7 +734,7 @@ class IpaddrUnitTest(unittest.TestCase):
self.assertEqual("IPv6Interface('::1/128')",
repr(ipaddress.IPv6Interface('::1')))
- # issue #16531: constructing IPv4Network from a (address, mask) tuple
+ # issue #16531: constructing IPv4Network from an (address, mask) tuple
def testIPv4Tuple(self):
# /32
ip = ipaddress.IPv4Address('192.0.2.1')
@@ -797,7 +797,7 @@ class IpaddrUnitTest(unittest.TestCase):
self.assertEqual(ipaddress.IPv4Interface((3221225985, 24)),
ipaddress.IPv4Interface('192.0.2.1/24'))
- # issue #16531: constructing IPv6Network from a (address, mask) tuple
+ # issue #16531: constructing IPv6Network from an (address, mask) tuple
def testIPv6Tuple(self):
# /128
ip = ipaddress.IPv6Address('2001:db8::')