Issue #20978: pyflakes: fix undefined names

This commit is contained in:
Victor Stinner 2014-03-20 08:50:52 +01:00
parent 790bd6dd13
commit 69b1e261fc
3 changed files with 2 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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: