diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-02-17 22:55:36 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-02-17 22:55:36 +0100 |
commit | 7cbb78cd979b492d4e2371aa0a69e9f6df59c7cd (patch) | |
tree | 012d63c001f134f0fa0214c3d0856ef435696891 /Lib/asyncio/base_subprocess.py | |
parent | 8391b728e9a28e8a28ba987425c9e2f25206fe3c (diff) | |
parent | 4088ad9dcef0d7bbe26dc4a2527d4220ac558f53 (diff) | |
download | cpython-git-7cbb78cd979b492d4e2371aa0a69e9f6df59c7cd.tar.gz |
Merge 3.4 (asyncio)
Diffstat (limited to 'Lib/asyncio/base_subprocess.py')
-rw-r--r-- | Lib/asyncio/base_subprocess.py | 2 |
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: |