[Python-checkins] cpython (merge 3.4 -> default): Merge 3.4 (asyncio)

victor.stinner python-checkins at python.org
Fri Feb 27 17:51:07 CET 2015


https://hg.python.org/cpython/rev/3708585125b8
changeset:   94774:3708585125b8
parent:      94772:2701e36e692f
parent:      94773:0b390b5a6729
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Fri Feb 27 17:49:19 2015 +0100
summary:
  Merge 3.4 (asyncio)

files:
  Lib/asyncio/base_subprocess.py |  6 ------
  1 files changed, 0 insertions(+), 6 deletions(-)


diff --git a/Lib/asyncio/base_subprocess.py b/Lib/asyncio/base_subprocess.py
--- a/Lib/asyncio/base_subprocess.py
+++ b/Lib/asyncio/base_subprocess.py
@@ -79,12 +79,6 @@
     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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list