From: Benjamin Peterson Date: Wed, 29 Apr 2009 21:53:47 +0000 (+0000) Subject: add UnsupportedOperation to __all__ X-Git-Tag: v3.1b1~110 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e12ef0421a90bee9ea64a2fbec4b9d2b1ed4c1ef;p=python add UnsupportedOperation to __all__ --- diff --git a/Lib/io.py b/Lib/io.py index 56ceb58ce1..1315708632 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