From: Victor Stinner Date: Thu, 20 Mar 2014 07:50:52 +0000 (+0100) Subject: Issue #20978: pyflakes: fix undefined names X-Git-Tag: v3.4.1rc1~213 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=69b1e261fc703106b44095796d78ba6aacbbdb63;p=thirdparty%2FPython%2Fcpython.git Issue #20978: pyflakes: fix undefined names --- diff --git a/Lib/ftplib.py b/Lib/ftplib.py index 2cc470258e18..c83be2b3195c 100644 --- a/Lib/ftplib.py +++ b/Lib/ftplib.py @@ -320,7 +320,6 @@ class FTP: raise err else: raise OSError("getaddrinfo returns an empty list") - raise OSError(msg) sock.listen(1) port = sock.getsockname()[1] # Get proper port host = self.sock.getsockname()[0] # Get proper host diff --git a/Lib/multiprocessing/connection.py b/Lib/multiprocessing/connection.py index 09ec4fc22a32..9b11a6959900 100644 --- a/Lib/multiprocessing/connection.py +++ b/Lib/multiprocessing/connection.py @@ -29,7 +29,7 @@ from .reduction import ForkingPickler try: import _winapi - from _winapi import WAIT_OBJECT_0, WAIT_TIMEOUT, INFINITE + from _winapi import WAIT_OBJECT_0, WAIT_ABANDONED_0, WAIT_TIMEOUT, INFINITE except ImportError: if sys.platform == 'win32': raise diff --git a/Lib/tempfile.py b/Lib/tempfile.py index 05d4cabe6063..57e8a829ec00 100644 --- a/Lib/tempfile.py +++ b/Lib/tempfile.py @@ -72,7 +72,7 @@ else: # file doesn't exist. def _stat(fn): fd = _os.open(fn, _os.O_RDONLY) - os.close(fd) + _os.close(fd) def _exists(fn): try: