summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-02-27 17:49:19 +0100
committerVictor Stinner <victor.stinner@gmail.com>2015-02-27 17:49:19 +0100
commite2bda9ad68af6d6fcee8e8274e02b19719c06bf0 (patch)
tree18bde9b64a9c2403923a9b47c8703fd3540a57e2
parent69899e6f3f92cf10de2164b1d46c0f4355f9d26d (diff)
parentce8c7682d6e363281ef6ad63c2a90c7b5118c757 (diff)
downloadcpython-git-e2bda9ad68af6d6fcee8e8274e02b19719c06bf0.tar.gz
Merge 3.4 (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 f56873fbea..c1cdfda754 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