(original) (raw)

changeset: 89501:ee277b383d33 parent: 89499:c83ce2a1841c parent: 89500:34df43c9c74a user: R David Murray rdmurray@bitdance.com date: Fri Mar 07 20:04:41 2014 -0500 files: Doc/library/subprocess.rst description: #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" :( diff -r c83ce2a1841c -r ee277b383d33 Doc/library/subprocess.rst --- a/Doc/library/subprocess.rst Fri Mar 07 12:29:24 2014 -0500 +++ b/Doc/library/subprocess.rst Fri Mar 07 20:04:41 2014 -0500 @@ -1091,8 +1091,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) @@ -1105,8 +1107,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 /rdmurray@bitdance.com