diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-07-31 08:40:21 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-07-31 08:40:21 (GMT) |
commit | 2ad2569c721c6179667a16d1a6f2df4f93606636 (patch) | |
tree | 93e1f4c5d1754aae38a36105bc1e051025bb65ac | |
parent | 7d9ed726fb6ec15dbfb8e922d35aa8816cbd0b0c (diff) | |
download | cpython-2ad2569c721c6179667a16d1a6f2df4f93606636.zip cpython-2ad2569c721c6179667a16d1a6f2df4f93606636.tar.gz cpython-2ad2569c721c6179667a16d1a6f2df4f93606636.tar.bz2 |
Initialize msg to avoid unbound locals.
-rw-r--r-- | Lib/ftplib.py | 2 | ||||
-rw-r--r-- | Lib/httplib.py | 1 | ||||
-rw-r--r-- | Lib/poplib.py | 1 | ||||
-rwxr-xr-x | Lib/smtplib.py | 1 | ||||
-rw-r--r-- | Lib/telnetlib.py | 1 |
5 files changed, 6 insertions, 0 deletions
diff --git a/Lib/ftplib.py b/Lib/ftplib.py index 885b5cd..fda7864 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -115,6 +115,7 @@ class FTP: if host: self.host = host if port: self.port = port self.passiveserver = 0 + 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: @@ -270,6 +271,7 @@ class FTP: def makeport(self): '''Create a new socket and send a PORT command for it.''' + msg = "getaddrinfo returns an empty list" for res in socket.getaddrinfo(None, 0, self.af, socket.SOCK_STREAM, 0, socket.AI_PASSIVE): af, socktype, proto, canonname, sa = res try: 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: diff --git a/Lib/poplib.py b/Lib/poplib.py index 592f7df..98b81ce 100644 --- a/Lib/poplib.py +++ b/Lib/poplib.py @@ -75,6 +75,7 @@ class POP3: def __init__(self, host, port = POP3_PORT): self.host = host self.port = port + 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: diff --git a/Lib/smtplib.py b/Lib/smtplib.py index 27cda40..3d28b0d 100755 --- a/Lib/smtplib.py +++ b/Lib/smtplib.py @@ -217,6 +217,7 @@ class SMTP: raise socket.error, "nonnumeric port" if not port: port = SMTP_PORT if self.debuglevel > 0: print 'connect:', (host, port) + msg = "getaddrinfo returns an empty list" for res in socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM): af, socktype, proto, canonname, sa = res try: diff --git a/Lib/telnetlib.py b/Lib/telnetlib.py index 5bac9e7..3731be7 100644 --- a/Lib/telnetlib.py +++ b/Lib/telnetlib.py @@ -136,6 +136,7 @@ class Telnet: port = TELNET_PORT self.host = host self.port = port + msg = "getaddrinfo returns an empty list" for res in socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM): af, socktype, proto, canonname, sa = res try: |