From cafc225f5463a720d3e9da252371995be61b127f Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 1 Apr 2009 21:12:54 +0000 Subject: [PATCH] add seek constants to __all__ --- Lib/io.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/io.py b/Lib/io.py index 1cf9a18e6f5..1e6efade47f 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