Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport

Methods only raise NotImplementedError and are never used.
This commit is contained in:
Victor Stinner 2015-02-27 17:49:09 +01:00
parent b389b48265
commit ce8c7682d6
1 changed files with 0 additions and 6 deletions

View File

@ -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