diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-29 21:53:47 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-29 21:53:47 (GMT) |
commit | e12ef0421a90bee9ea64a2fbec4b9d2b1ed4c1ef (patch) | |
tree | 43ed49d793e86e9ac620b0d08c67e8f9454f61a7 /Lib/io.py | |
parent | e08a66a37140faef88bc992cd5d1d2e8982e8012 (diff) | |
download | cpython-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |