summaryrefslogtreecommitdiff
path: root/Lib/subprocess.py
diff options
context:
space:
mode:
authorTim Golden <mail@timgolden.me.uk>2013-11-11 15:08:40 +0000
committerTim Golden <mail@timgolden.me.uk>2013-11-11 15:08:40 +0000
commitfc0cad8b04b872ab2af7c9c232247513892687c8 (patch)
tree440c03252413b27c5d7f4f9b63f0f1e1d4e7806d /Lib/subprocess.py
parentd0cf0635b3f73742a91a100b1f19b8f9edf7be9a (diff)
parentacea823fd876893400735985904904e9a63d43d9 (diff)
downloadcpython-git-fc0cad8b04b872ab2af7c9c232247513892687c8.tar.gz
Remove outdated comment
Diffstat (limited to 'Lib/subprocess.py')
-rw-r--r--Lib/subprocess.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/subprocess.py b/Lib/subprocess.py
index 15d95bd2c6..88355ada1b 100644
--- a/Lib/subprocess.py
+++ b/Lib/subprocess.py
@@ -691,7 +691,6 @@ def list2cmdline(seq):
# Various tools for executing commands and looking at their output and status.
#
-# NB This only works (and is only relevant) for POSIX.
def getstatusoutput(cmd):
""" Return (status, output) of executing cmd in a shell.