Some nits.
diff --git a/Lib/httplib.py b/Lib/httplib.py
index 008f0a4..d420f46 100644
--- a/Lib/httplib.py
+++ b/Lib/httplib.py
@@ -659,7 +659,8 @@
 
     def connect(self):
         """Connect to the host and port specified in __init__."""
-        self.sock = socket.create_connection((self.host,self.port), self.timeout)
+        self.sock = socket.create_connection((self.host,self.port),
+                                             self.timeout)
 
     def close(self):
         """Close the connection to the HTTP server."""