summaryrefslogtreecommitdiffstats
path: root/Lib/io.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-04-29 21:53:47 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-04-29 21:53:47 (GMT)
commite12ef0421a90bee9ea64a2fbec4b9d2b1ed4c1ef (patch)
tree43ed49d793e86e9ac620b0d08c67e8f9454f61a7 /Lib/io.py
parente08a66a37140faef88bc992cd5d1d2e8982e8012 (diff)
downloadcpython-e12ef0421a90bee9ea64a2fbec4b9d2b1ed4c1ef.zip
cpython-e12ef0421a90bee9ea64a2fbec4b9d2b1ed4c1ef.tar.gz
cpython-e12ef0421a90bee9ea64a2fbec4b9d2b1ed4c1ef.tar.bz2
add UnsupportedOperation to __all__
Diffstat (limited to 'Lib/io.py')
-rw-r--r--Lib/io.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/io.py b/Lib/io.py
index 56ceb58..1315708 100644
--- a/Lib/io.py
+++ b/Lib/io.py
@@ -53,7 +53,7 @@ __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO",
"BytesIO", "StringIO", "BufferedIOBase",
"BufferedReader", "BufferedWriter", "BufferedRWPair",
"BufferedRandom", "TextIOBase", "TextIOWrapper",
- "SEEK_SET", "SEEK_CUR", "SEEK_END"]
+ "UnsupportedOperation", "SEEK_SET", "SEEK_CUR", "SEEK_END"]
import _io