diff options
author | Jesus Cea <jcea@jcea.es> | 2012-04-26 15:05:31 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-04-26 15:05:31 (GMT) |
commit | 990eff0776a948b4a45b1c2750552c0c6864b5c7 (patch) | |
tree | 76e8958258e5d8eea71c5659119825f6547dc253 /Doc | |
parent | 2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7 (diff) | |
download | cpython-990eff0776a948b4a45b1c2750552c0c6864b5c7.zip cpython-990eff0776a948b4a45b1c2750552c0c6864b5c7.tar.gz cpython-990eff0776a948b4a45b1c2750552c0c6864b5c7.tar.bz2 |
Backing out 86dc014cdd74. Not ready yet
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/io.rst | 5 | ||||
-rw-r--r-- | Doc/library/os.rst | 4 |
2 files changed, 0 insertions, 9 deletions
diff --git a/Doc/library/io.rst b/Doc/library/io.rst index ff4dc75..4d564bb 100644 --- a/Doc/library/io.rst +++ b/Doc/library/io.rst @@ -291,11 +291,6 @@ I/O Base Classes .. versionadded:: 3.1 The ``SEEK_*`` constants. - .. versionadded:: 3.3 - Some operating systems could support additional values, like - :data:`os.SEEK_HOLE` or :data:`os.SEEK_DATA`. The valid values - for a file could depend on it being open in text or binary mode. - .. method:: seekable() Return ``True`` if the stream supports random access. If ``False``, diff --git a/Doc/library/os.rst b/Doc/library/os.rst index a43b434..14f9e07 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -992,10 +992,6 @@ 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) |