]> granicus.if.org Git - python/commitdiff
Change versionchanged for timeout to 3.3, not 3.2.
authorReid Kleckner <reid@kleckner.net>
Mon, 14 Mar 2011 16:36:53 +0000 (12:36 -0400)
committerReid Kleckner <reid@kleckner.net>
Mon, 14 Mar 2011 16:36:53 +0000 (12:36 -0400)
Doc/library/subprocess.rst

index eac6f40af60dc46b5ace901af714347f14acc4e9..bb6e68bd48f560e1250c8fd54c6b0d1fbb81fd7f 100644 (file)
@@ -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.