From: Victor Stinner Date: Fri, 27 Feb 2015 16:49:09 +0000 (+0100) Subject: Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport X-Git-Tag: v3.5.0a2~76^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ce8c7682d6e363281ef6ad63c2a90c7b5118c757;p=thirdparty%2FPython%2Fcpython.git Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport Methods only raise NotImplementedError and are never used. --- diff --git a/Lib/asyncio/base_subprocess.py b/Lib/asyncio/base_subprocess.py index f56873fbeade..c1cdfda75449 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