Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport
authorVictor Stinner <victor.stinner@gmail.com>
Fri, 27 Feb 2015 16:49:09 +0000 (17:49 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 27 Feb 2015 16:49:09 +0000 (17:49 +0100)
Methods only raise NotImplementedError and are never used.

Lib/asyncio/base_subprocess.py

index f56873fbeadef61e8b763f4ab4319323434ccb49..c1cdfda75449448563527e396e82a9b9a62e80fc 100644 (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