Commit ce8c7682 authored by Victor Stinner's avatar Victor Stinner

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

Methods only raise NotImplementedError and are never used.
parent b389b482
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment