diff options
author | Reid Kleckner <reid@kleckner.net> | 2011-03-14 16:36:53 (GMT) |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2011-03-14 16:36:53 (GMT) |
commit | 28f130320bb0dc1f0a218443e71ac5e321a102a0 (patch) | |
tree | ca314628a8591a831a0c8edec18b8f66e5df2bbf /Doc | |
parent | 3eb2347c8ce29ac76de4c2e4f98c6ecfa3b69e01 (diff) | |
download | cpython-28f130320bb0dc1f0a218443e71ac5e321a102a0.zip cpython-28f130320bb0dc1f0a218443e71ac5e321a102a0.tar.gz cpython-28f130320bb0dc1f0a218443e71ac5e321a102a0.tar.bz2 |
Change versionchanged for timeout to 3.3, not 3.2.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/subprocess.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst index eac6f40..bb6e68b 100644 --- a/Doc/library/subprocess.rst +++ b/Doc/library/subprocess.rst @@ -271,7 +271,7 @@ This module also defines four shortcut functions: generates enough output to a pipe such that it blocks waiting for the OS pipe buffer to accept more data. - .. versionchanged:: 3.2 + .. versionchanged:: 3.3 *timeout* was added. @@ -295,7 +295,7 @@ This module also defines four shortcut functions: See the warning for :func:`call`. - .. versionchanged:: 3.2 + .. versionchanged:: 3.3 *timeout* was added. @@ -328,7 +328,7 @@ This module also defines four shortcut functions: .. versionadded:: 3.1 - .. versionchanged:: 3.2 + .. versionchanged:: 3.3 *timeout* was added. @@ -424,7 +424,7 @@ Instances of the :class:`Popen` class have the following methods: a pipe such that it blocks waiting for the OS pipe buffer to accept more data. Use :meth:`communicate` to avoid that. - .. versionchanged:: 3.2 + .. versionchanged:: 3.3 *timeout* was added. @@ -462,7 +462,7 @@ Instances of the :class:`Popen` class have the following methods: The data read is buffered in memory, so do not use this method if the data size is large or unlimited. - .. versionchanged:: 3.2 + .. versionchanged:: 3.3 *timeout* was added. |