add seek constants to __all__

This commit is contained in:
Benjamin Peterson 2009-04-01 21:12:54 +00:00
parent 00b6590821
commit cafc225f54
1 changed files with 2 additions and 1 deletions

View File

@ -55,7 +55,8 @@ __author__ = ("Guido van Rossum <guido@python.org>, "
__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