diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-02-27 16:49:19 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-02-27 16:49:19 (GMT) |
commit | e2bda9ad68af6d6fcee8e8274e02b19719c06bf0 (patch) | |
tree | 18bde9b64a9c2403923a9b47c8703fd3540a57e2 /Lib | |
parent | 69899e6f3f92cf10de2164b1d46c0f4355f9d26d (diff) | |
parent | ce8c7682d6e363281ef6ad63c2a90c7b5118c757 (diff) | |
download | cpython-e2bda9ad68af6d6fcee8e8274e02b19719c06bf0.zip cpython-e2bda9ad68af6d6fcee8e8274e02b19719c06bf0.tar.gz cpython-e2bda9ad68af6d6fcee8e8274e02b19719c06bf0.tar.bz2 |
Merge 3.4 (asyncio)
Diffstat (limited to 'Lib')
-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 f56873f..c1cdfda 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 |