summaryrefslogtreecommitdiffstats
path: root/Lib/httplib.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-03-28 21:45:46 (GMT)
committerGuido van Rossum <guido@python.org>2000-03-28 21:45:46 (GMT)
commit93a7c0fe6b2186448ebe35a5af0ac3880d8f16fc (patch)
tree7e53b81f5f272f55a86e62234e06e482123f50fe /Lib/httplib.py
parent1916b35f5864b2bfe5e2687b7db4fc0c329c9402 (diff)
downloadcpython-93a7c0fe6b2186448ebe35a5af0ac3880d8f16fc.zip
cpython-93a7c0fe6b2186448ebe35a5af0ac3880d8f16fc.tar.gz
cpython-93a7c0fe6b2186448ebe35a5af0ac3880d8f16fc.tar.bz2
Fredrik Lundh:
This fixes a bunch of socket.connect(host, post) calls. Note that I haven't tested all modules -- I don't have enough servers here...
Diffstat (limited to 'Lib/httplib.py')
-rw-r--r--Lib/httplib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py
index a43adde..8c8084e 100644
--- a/Lib/httplib.py
+++ b/Lib/httplib.py
@@ -109,7 +109,7 @@ class HTTP:
if not port: port = HTTP_PORT
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
if self.debuglevel > 0: print 'connect:', (host, port)
- self.sock.connect(host, port)
+ self.sock.connect((host, port))
def send(self, str):
"""Send `str' to the server."""
@@ -209,7 +209,7 @@ if hasattr(socket, "ssl"):
if not port: port = HTTPS_PORT
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
if self.debuglevel > 0: print 'connect:', (host, port)
- sock.connect(host, port)
+ sock.connect((host, port))
ssl = socket.ssl(sock, self.key_file, self.cert_file)
self.sock = FakeSocket(sock, ssl)