summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2001-08-13 14:47:12 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2001-08-13 14:47:12 (GMT)
commit86c7e22036c935b3a3da98653db2ee313e46206a (patch)
tree9b2c92064471b3784c93c13515fd9d98d21edacb /Lib
parente7abf97903b943a0e68d1d0cf513929e2d96a780 (diff)
downloadcpython-86c7e22036c935b3a3da98653db2ee313e46206a.zip
cpython-86c7e22036c935b3a3da98653db2ee313e46206a.tar.gz
cpython-86c7e22036c935b3a3da98653db2ee313e46206a.tar.bz2
Add forgotten import (PyChecker)
Diffstat (limited to 'Lib')
-rw-r--r--Lib/posixfile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/posixfile.py b/Lib/posixfile.py
index b16b892..589510d 100644
--- a/Lib/posixfile.py
+++ b/Lib/posixfile.py
@@ -107,7 +107,7 @@ class _posixfile_:
return posix.fdopen(fd, self._file_.mode)
def flags(self, *which):
- import fcntl
+ import fcntl, os
if which:
if len(which) > 1: