diff options
author | Jesus Cea <jcea@jcea.es> | 2012-04-26 14:39:35 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-04-26 14:39:35 (GMT) |
commit | 2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7 (patch) | |
tree | e7a04c686ef2b72e9d4495b88e8f87c58cfd5e11 /Doc/library/os.rst | |
parent | 790a9b4c193a9f3323138a8c1c1d074a6b6289f0 (diff) | |
download | cpython-2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7.zip cpython-2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7.tar.gz cpython-2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7.tar.bz2 |
Close #10142: Support for SEEK_HOLE/SEEK_DATA
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 14f9e07..a43b434 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -992,6 +992,10 @@ as internal buffering of data. Parameters to the :func:`lseek` function. Their values are 0, 1, and 2, respectively. Availability: Windows, Unix. + .. versionadded:: 3.3 + Some operating systems could support additional values, like + :data:`os.SEEK_HOLE` or :data:`os.SEEK_DATA`. + .. function:: mkdirat(dirfd, path, mode=0o777) |