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
commit4c48f5e193f0ae18c5dba385973905032e261ff3 (patch)
tree55141502c6693016881f3a51761831f224bd90f2 /Lib/subprocess.py
parent3ce25db076e2509b4162e69c15adc0b371b22144 (diff)
parentc33d2fd82c8d4f49d90d0ca1bdfa1f73332a1417 (diff)
downloadcpython-4c48f5e193f0ae18c5dba385973905032e261ff3.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.