summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-11-10 19:02:04 (GMT)
committerJason R. Coombs <jaraco@jaraco.com>2013-11-10 19:02:04 (GMT)
commit6bdc498734e83afbfd8d80c2f70b5d3800d65223 (patch)
treeb81fac1a48419202168c4e6473025ab13beed55d
parent8ec784c2df2cfe9783d6434a46815c8d0c4f29f0 (diff)
downloadcpython-6bdc498734e83afbfd8d80c2f70b5d3800d65223.zip
cpython-6bdc498734e83afbfd8d80c2f70b5d3800d65223.tar.gz
cpython-6bdc498734e83afbfd8d80c2f70b5d3800d65223.tar.bz2
Normalize whitespace
-rw-r--r--Lib/test/test_socket.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_socket.py b/Lib/test/test_socket.py
index eb8619f..a7c2516 100644
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -980,14 +980,14 @@ class GeneralModuleTests(unittest.TestCase):
return
except ImportError:
return
-
+
if sys.platform == "win32":
try:
inet_pton(AF_INET6, '::')
except OSError as e:
if e.winerror == 10022:
return # IPv6 might not be installed on this PC
-
+
f = lambda a: inet_pton(AF_INET6, a)
assertInvalid = lambda a: self.assertRaises(
(OSError, ValueError), f, a