summaryrefslogtreecommitdiffstats
path: root/Lib/httplib.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-07-31 08:40:21 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-07-31 08:40:21 (GMT)
commit2ad2569c721c6179667a16d1a6f2df4f93606636 (patch)
tree93e1f4c5d1754aae38a36105bc1e051025bb65ac /Lib/httplib.py
parent7d9ed726fb6ec15dbfb8e922d35aa8816cbd0b0c (diff)
downloadcpython-2ad2569c721c6179667a16d1a6f2df4f93606636.zip
cpython-2ad2569c721c6179667a16d1a6f2df4f93606636.tar.gz
cpython-2ad2569c721c6179667a16d1a6f2df4f93606636.tar.bz2
Initialize msg to avoid unbound locals.
Diffstat (limited to 'Lib/httplib.py')
-rw-r--r--Lib/httplib.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/httplib.py b/Lib/httplib.py
index 1038831..7ab9149 100644
--- a/Lib/httplib.py
+++ b/Lib/httplib.py
@@ -357,6 +357,7 @@ class HTTPConnection:
def connect(self):
"""Connect to the host and port specified in __init__."""
+ msg = "getaddrinfo returns an empty list"
for res in socket.getaddrinfo(self.host, self.port, 0, socket.SOCK_STREAM):
af, socktype, proto, canonname, sa = res
try: