Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport
Methods only raise NotImplementedError and are never used.
This commit is contained in:
parent
b389b48265
commit
ce8c7682d6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue