]> granicus.if.org Git - python/commitdiff
#4697: clarify that the functions are Unix-only.
authorGeorg Brandl <georg@python.org>
Sat, 27 Dec 2008 19:08:11 +0000 (19:08 +0000)
committerGeorg Brandl <georg@python.org>
Sat, 27 Dec 2008 19:08:11 +0000 (19:08 +0000)
Doc/library/subprocess.rst

index 588b3e1bbd712d6310e886c728fc79ff092be51c..57b83d366ffd8c7ce2ca05fdbeb4da2f6cec4290 100644 (file)
@@ -197,6 +197,8 @@ This module also defines four shortcut functions:
       >>> subprocess.getstatusoutput('/bin/junk')
       (256, 'sh: /bin/junk: not found')
 
+   Availability: UNIX.
+
 
 .. function:: getoutput(cmd)
    Return output (stdout and stderr) of executing *cmd* in a shell.
@@ -208,6 +210,8 @@ This module also defines four shortcut functions:
       >>> subprocess.getoutput('ls /bin/ls')
       '/bin/ls'
 
+   Availability: UNIX.
+
 
 Exceptions
 ^^^^^^^^^^