summaryrefslogtreecommitdiff
path: root/Lib/asyncio/base_subprocess.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-02-17 22:55:36 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-02-17 22:55:36 +0100
commit7cbb78cd979b492d4e2371aa0a69e9f6df59c7cd (patch)
tree012d63c001f134f0fa0214c3d0856ef435696891 /Lib/asyncio/base_subprocess.py
parent8391b728e9a28e8a28ba987425c9e2f25206fe3c (diff)
parent4088ad9dcef0d7bbe26dc4a2527d4220ac558f53 (diff)
downloadcpython-git-7cbb78cd979b492d4e2371aa0a69e9f6df59c7cd.tar.gz
Merge 3.4 (asyncio)
Diffstat (limited to 'Lib/asyncio/base_subprocess.py')
-rw-r--r--Lib/asyncio/base_subprocess.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/asyncio/base_subprocess.py b/Lib/asyncio/base_subprocess.py
index 5458ab154c..f56873fbea 100644
--- a/Lib/asyncio/base_subprocess.py
+++ b/Lib/asyncio/base_subprocess.py
@@ -57,6 +57,8 @@ class BaseSubprocessTransport(transports.SubprocessTransport):
info.append('pid=%s' % self._pid)
if self._returncode is not None:
info.append('returncode=%s' % self._returncode)
+ else:
+ info.append('running')
stdin = self._pipes.get(0)
if stdin is not None: