[Python-checkins] cpython: Change versionchanged for timeout to 3.3, not 3.2.

reid.kleckner python-checkins at python.org
Mon Mar 14 17:37:31 CET 2011


http://hg.python.org/cpython/rev/72e49cb7fcf5
changeset:   68458:72e49cb7fcf5
parent:      68456:2a2f0b01eaf7
user:        Reid Kleckner <reid at kleckner.net>
date:        Mon Mar 14 12:36:53 2011 -0400
summary:
  Change versionchanged for timeout to 3.3, not 3.2.

files:
  Doc/library/subprocess.rst

diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -271,7 +271,7 @@
       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 @@
 
       See the warning for :func:`call`.
 
-   .. versionchanged:: 3.2
+   .. versionchanged:: 3.3
       *timeout* was added.
 
 
@@ -328,7 +328,7 @@
 
    .. versionadded:: 3.1
 
-   .. versionchanged:: 3.2
+   .. versionchanged:: 3.3
       *timeout* was added.
 
 
@@ -424,7 +424,7 @@
       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 @@
       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.
 
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list