[Python-checkins] r71015 - python/branches/py3k/Lib/_pyio.py

benjamin.peterson python-checkins at python.org
Thu Apr 2 03:03:26 CEST 2009


Author: benjamin.peterson
Date: Thu Apr  2 03:03:26 2009
New Revision: 71015

Log:
add SEEK_ constants to _pyio

Modified:
   python/branches/py3k/Lib/_pyio.py

Modified: python/branches/py3k/Lib/_pyio.py
==============================================================================
--- python/branches/py3k/Lib/_pyio.py	(original)
+++ python/branches/py3k/Lib/_pyio.py	Thu Apr  2 03:03:26 2009
@@ -14,6 +14,7 @@
 
 import io
 from io import __all__
+from io import SEEK_SET, SEEK_CUR, SEEK_END
 
 # open() uses st_blksize whenever we can
 DEFAULT_BUFFER_SIZE = 8 * 1024  # bytes


More information about the Python-checkins mailing list