summaryrefslogtreecommitdiff
path: root/Lib/io.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-04-01 21:12:54 +0000
committerBenjamin Peterson <benjamin@python.org>2009-04-01 21:12:54 +0000
commitcafc225f5463a720d3e9da252371995be61b127f (patch)
treefef3e7cfbf96086b14d307d5965a596563bffeb1 /Lib/io.py
parent00b6590821d97dc2bde82e70e06d68918c2e3b07 (diff)
downloadcpython-git-cafc225f5463a720d3e9da252371995be61b127f.tar.gz
add seek constants to __all__
Diffstat (limited to 'Lib/io.py')
-rw-r--r--Lib/io.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/io.py b/Lib/io.py
index 1cf9a18e6f..1e6efade47 100644
--- a/Lib/io.py
+++ b/Lib/io.py
@@ -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