summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-02-27 16:49:09 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-02-27 16:49:09 (GMT)
commitce8c7682d6e363281ef6ad63c2a90c7b5118c757 (patch)
tree658b5e4a092f45a64783f93bf2c8c9fe4dd454bd /Lib/asyncio
parentb389b482659a0633d84f15307c9605cc0bf28633 (diff)
downloadcpython-ce8c7682d6e363281ef6ad63c2a90c7b5118c757.zip
cpython-ce8c7682d6e363281ef6ad63c2a90c7b5118c757.tar.gz
cpython-ce8c7682d6e363281ef6ad63c2a90c7b5118c757.tar.bz2
Issue #23537: Remove 2 unused private methods of asyncio.BaseSubprocessTransport
Methods only raise NotImplementedError and are never used.
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/base_subprocess.py6
1 files changed, 0 insertions, 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