diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-02-27 16:49:09 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-02-27 16:49:09 (GMT) |
commit | ce8c7682d6e363281ef6ad63c2a90c7b5118c757 (patch) | |
tree | 658b5e4a092f45a64783f93bf2c8c9fe4dd454bd | |
parent | b389b482659a0633d84f15307c9605cc0bf28633 (diff) | |
download | cpython-ce8c7682d6e363281ef6ad63c2a90c7b5118c757.zip cpython-ce8c7682d6e363281ef6ad63c2a90c7b5118c757.tar.gz cpython-ce8c7682d6e363281ef6ad63c2a90c7b5118c757.tar.bz2 |
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 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 |