diff options
author | Yury Selivanov <yury@magic.io> | 2016-09-11 21:11:19 -0400 |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2016-09-11 21:11:19 -0400 |
commit | 966321e236548e056b2566ae24f60a2a7cfc2511 (patch) | |
tree | 234e9714a7b333b87f79ff734e7de15a56968d5a /Lib/asyncio/base_subprocess.py | |
parent | 0b51fd434156f19aaf9a34f273a55f62047dc1a6 (diff) | |
parent | a05a6ef1ca781e2f98fb4332284aca649f24f75d (diff) | |
download | cpython-git-966321e236548e056b2566ae24f60a2a7cfc2511.tar.gz |
Merge 3.5 (asyncio)
Diffstat (limited to 'Lib/asyncio/base_subprocess.py')
-rw-r--r-- | Lib/asyncio/base_subprocess.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/asyncio/base_subprocess.py b/Lib/asyncio/base_subprocess.py index fb8c2ba72f..28482b7189 100644 --- a/Lib/asyncio/base_subprocess.py +++ b/Lib/asyncio/base_subprocess.py @@ -87,6 +87,12 @@ class BaseSubprocessTransport(transports.SubprocessTransport): def _start(self, args, shell, stdin, stdout, stderr, bufsize, **kwargs): raise NotImplementedError + def set_protocol(self, protocol): + self._protocol = protocol + + def get_protocol(self): + return self._protocol + def is_closing(self): return self._closed |