[Python-checkins] cpython: Merge latest Tulip into asyncio

andrew.svetlov python-checkins at python.org
Sun Jan 26 17:36:14 CET 2014


http://hg.python.org/cpython/rev/ae7b80efd632
changeset:   88726:ae7b80efd632
user:        Andrew Svetlov <andrew.svetlov at gmail.com>
date:        Sun Jan 26 18:36:01 2014 +0200
summary:
  Merge latest Tulip into asyncio

files:
  Lib/asyncio/base_subprocess.py |  1 -
  Lib/asyncio/unix_events.py     |  3 ---
  Lib/asyncio/windows_events.py  |  3 ---
  3 files changed, 0 insertions(+), 7 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
@@ -114,7 +114,6 @@
         assert returncode is not None, returncode
         assert self._returncode is None, self._returncode
         self._returncode = returncode
-        self._loop._subprocess_closed(self)
         self._call(self._protocol.process_exited)
         self._try_finish()
 
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py
--- a/Lib/asyncio/unix_events.py
+++ b/Lib/asyncio/unix_events.py
@@ -169,9 +169,6 @@
     def _child_watcher_callback(self, pid, returncode, transp):
         self.call_soon_threadsafe(transp._process_exited, returncode)
 
-    def _subprocess_closed(self, transp):
-        pass
-
 
 def _set_nonblocking(fd):
     flags = fcntl.fcntl(fd, fcntl.F_GETFL)
diff --git a/Lib/asyncio/windows_events.py b/Lib/asyncio/windows_events.py
--- a/Lib/asyncio/windows_events.py
+++ b/Lib/asyncio/windows_events.py
@@ -178,9 +178,6 @@
         yield from transp._post_init()
         return transp
 
-    def _subprocess_closed(self, transport):
-        pass
-
 
 class IocpProactor:
     """Proactor implementation using IOCP."""

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


More information about the Python-checkins mailing list