diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-04-25 06:30:05 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-04-25 06:30:05 +0000 |
commit | 0d4c06e06e5ee1f3bb1fa8068114bd700d74864a (patch) | |
tree | 021c8e11696fc29a41ddd9e853af42e6008a58f6 /Lib/test/test_httplib.py | |
parent | e47c508850392422ebbf15c86e7411b46addfcd0 (diff) | |
download | cpython-git-0d4c06e06e5ee1f3bb1fa8068114bd700d74864a.tar.gz |
Whitespace normalization. Ugh, we really need to do this more often.
You might want to review this change as it's my first time. Be gentle. :-)
Diffstat (limited to 'Lib/test/test_httplib.py')
-rw-r--r-- | Lib/test/test_httplib.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_httplib.py b/Lib/test/test_httplib.py index c1ec4a0f44..035f0b909e 100644 --- a/Lib/test/test_httplib.py +++ b/Lib/test/test_httplib.py @@ -154,7 +154,7 @@ PORT = 50003 HOST = "localhost" class TimeoutTest(TestCase): - + def setUp(self): self.serv = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.serv.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1) @@ -175,7 +175,7 @@ class TimeoutTest(TestCase): httpConn.connect() self.assertTrue(httpConn.sock.gettimeout() is None) httpConn.close() - + # a value httpConn = httplib.HTTPConnection(HOST, PORT, timeout=30) httpConn.connect() |