From: Benjamin Peterson Date: Wed, 1 Apr 2009 21:12:54 +0000 (+0000) Subject: add seek constants to __all__ X-Git-Tag: v2.7a1~1623 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cafc225f5463a720d3e9da252371995be61b127f;p=python add seek constants to __all__ --- 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 , " __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