diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-01 21:22:20 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-01 21:22:20 (GMT) |
commit | 0e4caf4bd2e5a964c916a06fff64d5cadbe623b6 (patch) | |
tree | f1ac83f88e0be6544a8ee0ed310283cf27d29d0f /Doc/library/io.rst | |
parent | 1fd32a6731295ae046383155c630c697e7a631a1 (diff) | |
download | cpython-0e4caf4bd2e5a964c916a06fff64d5cadbe623b6.zip cpython-0e4caf4bd2e5a964c916a06fff64d5cadbe623b6.tar.gz cpython-0e4caf4bd2e5a964c916a06fff64d5cadbe623b6.tar.bz2 |
Merged revisions 70992,70995 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70992 | georg.brandl | 2009-04-01 16:00:55 -0500 (Wed, 01 Apr 2009) | 1 line
#4572: add SEEK_* values as constants in io.py.
........
r70995 | benjamin.peterson | 2009-04-01 16:12:54 -0500 (Wed, 01 Apr 2009) | 1 line
add seek constants to __all__
........
Diffstat (limited to 'Doc/library/io.rst')
-rw-r--r-- | Doc/library/io.rst | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index e06ab3f..9e4161a 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -270,12 +270,18 @@ I/O Base Classes interpreted relative to the position indicated by *whence*. Values for *whence* are: - * ``0`` -- start of the stream (the default); *offset* should be zero or positive - * ``1`` -- current stream position; *offset* may be negative - * ``2`` -- end of the stream; *offset* is usually negative + * :data:`SEEK_SET` or ``0`` -- start of the stream (the default); + *offset* should be zero or positive + * :data:`SEEK_CUR` or ``1`` -- current stream position; *offset* may + be negative + * :data:`SEEK_END` or ``2`` -- end of the stream; *offset* is usually + negative Return the new absolute position. + .. versionadded:: 2.7 + The ``SEEK_*`` constants + .. method:: seekable() Return ``True`` if the stream supports random access. If ``False``, |