add seek constants to __all__
diff --git a/Lib/io.py b/Lib/io.py
index 1cf9a18..1e6efad 100644
--- a/Lib/io.py
+++ b/Lib/io.py
@@ -55,7 +55,8 @@
 __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