commit | cafc225f5463a720d3e9da252371995be61b127f | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Wed Apr 01 21:12:54 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Wed Apr 01 21:12:54 2009 +0000 |
tree | fef3e7cfbf96086b14d307d5965a596563bffeb1 | |
parent | 00b6590821d97dc2bde82e70e06d68918c2e3b07 [diff] [blame] |
add seek constants to __all__
diff --git a/Lib/io.py b/Lib/io.py index 1cf9a18..1e6efad 100644 --- a/Lib/io.py +++ b/Lib/io.py
@@ -55,7 +55,8 @@ __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO", "BytesIO", "StringIO", "BufferedIOBase", "BufferedReader", "BufferedWriter", "BufferedRWPair", - "BufferedRandom", "TextIOBase", "TextIOWrapper"] + "BufferedRandom", "TextIOBase", "TextIOWrapper", + "SEEK_SET", "SEEK_CUR", "SEEK_END"] import os import abc