From ce8c7682d6e363281ef6ad63c2a90c7b5118c757 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 27 Feb 2015 17:49:09 +0100 Subject: Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport Methods only raise NotImplementedError and are never used. --- Lib/asyncio/base_subprocess.py | 6 ------ 1 file changed, 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 -- cgit v0.12