summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-03-08 01:04:41 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-03-08 01:04:41 (GMT)
commit48b6b70b9563f9aa8a08189d278bb486a86c59bd (patch)
tree3979c6cc37f1f913b3b2ddc76d830f34a0049af4 /Doc/library
parentfd5891ce31c36bd5df8f02a6b915675509addee5 (diff)
parent95b696a01008923854b64a8adeb049844679043e (diff)
downloadcpython-48b6b70b9563f9aa8a08189d278bb486a86c59bd.zip
cpython-48b6b70b9563f9aa8a08189d278bb486a86c59bd.tar.gz
cpython-48b6b70b9563f9aa8a08189d278bb486a86c59bd.tar.bz2
#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" :(
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/subprocess.rst12
1 files changed, 8 insertions, 4 deletions
diff --git a/Doc/library/subprocess.rst b/Doc/library/subprocess.rst
index f03c322..d4caf22 100644
--- a/Doc/library/subprocess.rst
+++ b/Doc/library/subprocess.rst
@@ -1091,8 +1091,10 @@ handling consistency are valid for these functions.
>>> 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 @@ handling consistency are valid for these functions.
>>> subprocess.getoutput('ls /bin/ls')
'/bin/ls'
- .. versionchanged:: 3.3
- Availability: Unix & Windows
+ Availability: Unix & Windows
+
+ .. versionchanged:: 3.3.4
+ Windows support added
Notes