diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-02-27 17:49:19 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-02-27 17:49:19 +0100 |
commit | e2bda9ad68af6d6fcee8e8274e02b19719c06bf0 (patch) | |
tree | 18bde9b64a9c2403923a9b47c8703fd3540a57e2 | |
parent | 69899e6f3f92cf10de2164b1d46c0f4355f9d26d (diff) | |
parent | ce8c7682d6e363281ef6ad63c2a90c7b5118c757 (diff) | |
download | cpython-git-e2bda9ad68af6d6fcee8e8274e02b19719c06bf0.tar.gz |
Merge 3.4 (asyncio)
-rw-r--r-- | Lib/asyncio/base_subprocess.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Lib/asyncio/base_subprocess.py b/Lib/asyncio/base_subprocess.py index f56873fbea..c1cdfda754 100644 --- a/Lib/asyncio/base_subprocess.py +++ b/Lib/asyncio/base_subprocess.py @@ -79,12 +79,6 @@ class BaseSubprocessTransport(transports.SubprocessTransport): def _start(self, args, shell, stdin, stdout, stderr, bufsize, **kwargs): raise NotImplementedError - def _make_write_subprocess_pipe_proto(self, fd): - raise NotImplementedError - - def _make_read_subprocess_pipe_proto(self, fd): - raise NotImplementedError - def close(self): if self._closed: return |