summaryrefslogtreecommitdiffstats
path: root/Doc/library/os.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-12-17 22:15:22 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-12-17 22:15:22 (GMT)
commit25ec056cc2bab9d0dd6f7665911f246e491744c5 (patch)
tree6acd0e4cfdcadac4feec49dd37fbd5b661ac78d4 /Doc/library/os.rst
parentbb305de584414f082afc1cbc2cd61160ef46d88a (diff)
parente83f899364607d9c6ca8413f0db6bca6bd39953a (diff)
downloadcpython-25ec056cc2bab9d0dd6f7665911f246e491744c5.zip
cpython-25ec056cc2bab9d0dd6f7665911f246e491744c5.tar.gz
cpython-25ec056cc2bab9d0dd6f7665911f246e491744c5.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.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 8632c4b..bb1ebd9 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -977,7 +977,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.