[Python-checkins] r70995 - python/trunk/Lib/io.py

benjamin.peterson python-checkins at python.org
Wed Apr 1 23:12:54 CEST 2009


Author: benjamin.peterson
Date: Wed Apr  1 23:12:54 2009
New Revision: 70995

Log:
add seek constants to __all__

Modified:
   python/trunk/Lib/io.py

Modified: python/trunk/Lib/io.py
==============================================================================
--- python/trunk/Lib/io.py	(original)
+++ python/trunk/Lib/io.py	Wed Apr  1 23:12:54 2009
@@ -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


More information about the Python-checkins mailing list