summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-02-27 17:45:04 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-02-27 17:45:04 +0100
commit804962515bb9e0ae6257194743f0a9eea2982107 (patch)
tree6cdc4d4b9ce5d5834fde452df4836c52227ccee5
parente147802bca02ca103264c5a10fb84457cd12abbf (diff)
downloadtrollius-git-804962515bb9e0ae6257194743f0a9eea2982107.tar.gz
Python issue #23537: Remove 2 unused private methods of BaseSubprocessTransport
Methods only raise NotImplementedError and are never used.
-rw-r--r--asyncio/base_subprocess.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/asyncio/base_subprocess.py b/asyncio/base_subprocess.py
index f56873f..c1cdfda 100644
--- a/asyncio/base_subprocess.py
+++ b/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