[Python-checkins] cpython (3.3): #10197: Update get[status]output versionchanged with actual version.

r.david.murray python-checkins at python.org
Sat Mar 8 02:26:11 CET 2014


http://hg.python.org/cpython/rev/34df43c9c74a
changeset:   89500:34df43c9c74a
branch:      3.3
parent:      89498:a24085e1b1f5
user:        R David Murray <rdmurray at bitdance.com>
date:        Fri Mar 07 20:04:17 2014 -0500
summary:
  #10197: Update get[status]output versionchanged with actual version.

This was perhaps on the border between a bug fix and a feature since
the Python3 docs did not originally say it was unix only.  However, the
functions never worked anywhere but unix, and the docs were changed to
say it was unix only well before the windows support was added.

Unfortunately, windows support was added in 3.3.4 as well as 3.4.
That leaves us in the uncomfortable position of needing the tag to say
"version changed: 3.3.4" :(

files:
  Doc/library/subprocess.rst |  12 ++++++++----
  1 files changed, 8 insertions(+), 4 deletions(-)


diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -1072,8 +1072,10 @@
       >>> subprocess.getstatusoutput('/bin/junk')
       (256, 'sh: /bin/junk: not found')
 
-   .. versionchanged:: 3.3
-      Availability: Unix & Windows
+   Availability: Unix & Windows
+
+   .. versionchanged:: 3.3.4
+      Windows support added
 
 
 .. function:: getoutput(cmd)
@@ -1086,8 +1088,10 @@
       >>> subprocess.getoutput('ls /bin/ls')
       '/bin/ls'
 
-   .. versionchanged:: 3.3
-      Availability: Unix & Windows
+   Availability: Unix & Windows
+
+   .. versionchanged:: 3.3.4
+      Windows support added
 
 
 Notes

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


More information about the Python-checkins mailing list