[Python-checkins] cpython: Normalize whitespace

jason.coombs python-checkins at python.org
Sun Nov 10 20:02:53 CET 2013


http://hg.python.org/cpython/rev/892ec51a162f
changeset:   87036:892ec51a162f
user:        Jason R. Coombs <jaraco at jaraco.com>
date:        Sun Nov 10 14:02:04 2013 -0500
summary:
  Normalize whitespace

files:
  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
--- a/Lib/test/test_socket.py
+++ b/Lib/test/test_socket.py
@@ -980,14 +980,14 @@
                 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

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


More information about the Python-checkins mailing list