diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-01 21:12:54 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-01 21:12:54 +0000 |
commit | cafc225f5463a720d3e9da252371995be61b127f (patch) | |
tree | fef3e7cfbf96086b14d307d5965a596563bffeb1 /Lib/io.py | |
parent | 00b6590821d97dc2bde82e70e06d68918c2e3b07 (diff) | |
download | cpython-git-cafc225f5463a720d3e9da252371995be61b127f.tar.gz |
add seek constants to __all__
Diffstat (limited to 'Lib/io.py')
-rw-r--r-- | Lib/io.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -55,7 +55,8 @@ __author__ = ("Guido van Rossum <guido@python.org>, " __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 |