summaryrefslogtreecommitdiffstats
path: root/Lib/tempfile.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-03-20 07:50:52 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-03-20 07:50:52 (GMT)
commit69b1e261fc703106b44095796d78ba6aacbbdb63 (patch)
tree1d441b56ebe2a0c0dae1010641898a031cc2e050 /Lib/tempfile.py
parent790bd6dd1322db0eba7635e86cfe3e54f6b04031 (diff)
downloadcpython-69b1e261fc703106b44095796d78ba6aacbbdb63.zip
cpython-69b1e261fc703106b44095796d78ba6aacbbdb63.tar.gz
cpython-69b1e261fc703106b44095796d78ba6aacbbdb63.tar.bz2
Issue #20978: pyflakes: fix undefined names
Diffstat (limited to 'Lib/tempfile.py')
-rw-r--r--Lib/tempfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tempfile.py b/Lib/tempfile.py
index 05d4cab..57e8a82 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: