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

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