diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-08-13 14:47:12 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-08-13 14:47:12 (GMT) |
commit | 86c7e22036c935b3a3da98653db2ee313e46206a (patch) | |
tree | 9b2c92064471b3784c93c13515fd9d98d21edacb /Lib/posixfile.py | |
parent | e7abf97903b943a0e68d1d0cf513929e2d96a780 (diff) | |
download | cpython-86c7e22036c935b3a3da98653db2ee313e46206a.zip cpython-86c7e22036c935b3a3da98653db2ee313e46206a.tar.gz cpython-86c7e22036c935b3a3da98653db2ee313e46206a.tar.bz2 |
Add forgotten import (PyChecker)
Diffstat (limited to 'Lib/posixfile.py')
-rw-r--r-- | Lib/posixfile.py | 2 |
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: |