summaryrefslogtreecommitdiff
path: root/Lib/posixfile.py
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-02-12 02:00:42 +0000
committerSkip Montanaro <skip@pobox.com>2001-02-12 02:00:42 +0000
commitc62c81e013fbc9a726493870c3624b60ae63a757 (patch)
tree877ed808aa0af2b40e4f4385f1d8d28c1019fb05 /Lib/posixfile.py
parent81b6ae7ef71c2701a75773674e96829415e1a1d8 (diff)
downloadcpython-git-c62c81e013fbc9a726493870c3624b60ae63a757.tar.gz
__all__ for several more modules
Diffstat (limited to 'Lib/posixfile.py')
-rw-r--r--Lib/posixfile.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/posixfile.py b/Lib/posixfile.py
index 58c4b4f5f8..da374ad9a9 100644
--- a/Lib/posixfile.py
+++ b/Lib/posixfile.py
@@ -53,6 +53,8 @@ f.lock(mode [, len [, start [, whence]]])
query only
"""
+__all__ = ["open","fileopen","SEEK_SET","SEEK_CUR","SEEK_END"]
+
class _posixfile_:
"""File wrapper class that provides extra POSIX file routines."""