diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-10 19:02:04 (GMT) |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-11-10 19:02:04 (GMT) |
commit | 6bdc498734e83afbfd8d80c2f70b5d3800d65223 (patch) | |
tree | b81fac1a48419202168c4e6473025ab13beed55d | |
parent | 8ec784c2df2cfe9783d6434a46815c8d0c4f29f0 (diff) | |
download | cpython-6bdc498734e83afbfd8d80c2f70b5d3800d65223.zip cpython-6bdc498734e83afbfd8d80c2f70b5d3800d65223.tar.gz cpython-6bdc498734e83afbfd8d80c2f70b5d3800d65223.tar.bz2 |
Normalize whitespace
-rw-r--r-- | Lib/test/test_socket.py | 4 |
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 |