diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2015-02-27 17:49:09 +0100 |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2015-02-27 17:49:09 +0100 |
| commit | ce8c7682d6e363281ef6ad63c2a90c7b5118c757 (patch) | |
| tree | 658b5e4a092f45a64783f93bf2c8c9fe4dd454bd | |
| parent | b389b482659a0633d84f15307c9605cc0bf28633 (diff) | |
| download | cpython-git-ce8c7682d6e363281ef6ad63c2a90c7b5118c757.tar.gz | |
Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport
Methods only raise NotImplementedError and are never used.
| -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 |
