diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-12-17 22:15:09 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-12-17 22:15:09 (GMT) |
commit | e83f899364607d9c6ca8413f0db6bca6bd39953a (patch) | |
tree | 30816a74c1e2512db9ea9a2e4316a04678ca0f93 /Doc/library/os.rst | |
parent | 136ea49b3990d4ed1600be0d042c3676cfcece0f (diff) | |
download | cpython-e83f899364607d9c6ca8413f0db6bca6bd39953a.zip cpython-e83f899364607d9c6ca8413f0db6bca6bd39953a.tar.gz cpython-e83f899364607d9c6ca8413f0db6bca6bd39953a.tar.bz2 |
Issue #13530: Document os.lseek() result
Patch written by Jérémy Anger.
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 767c40f..df9a6b6 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -706,7 +706,7 @@ as internal buffering of data. by *how*: :const:`SEEK_SET` or ``0`` to set the position relative to the beginning of the file; :const:`SEEK_CUR` or ``1`` to set it relative to the current position; :const:`os.SEEK_END` or ``2`` to set it relative to the end of - the file. + the file. Return the new cursor position in bytes, starting from the beginning. Availability: Unix, Windows. |