summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2014-01-27 06:28:06 (GMT)
committerLarry Hastings <larry@hastings.org>2014-01-27 06:28:06 (GMT)
commit23105d801432740c5ed61b56d8f6fb9f6cf6923e (patch)
tree560577ab65b1a1bdbd87c337d2773ce8e5724917 /Lib/asyncio
parentee4cca6e33b2b2c114ec8736a76263f92b37c4aa (diff)
parent71215c584ad94cdfe34cfa5ab522f7c36f2df0c7 (diff)
downloadcpython-23105d801432740c5ed61b56d8f6fb9f6cf6923e.zip
cpython-23105d801432740c5ed61b56d8f6fb9f6cf6923e.tar.gz
cpython-23105d801432740c5ed61b56d8f6fb9f6cf6923e.tar.bz2
Merge.
Diffstat (limited to 'Lib/asyncio')
-rw-r--r--Lib/asyncio/base_subprocess.py1
-rw-r--r--Lib/asyncio/unix_events.py3
-rw-r--r--Lib/asyncio/windows_events.py3
3 files changed, 0 insertions, 7 deletions
diff --git a/Lib/asyncio/base_subprocess.py b/Lib/asyncio/base_subprocess.py
index d15fb15..c5efda7 100644
--- a/Lib/asyncio/base_subprocess.py
+++ b/Lib/asyncio/base_subprocess.py
@@ -114,7 +114,6 @@ class BaseSubprocessTransport(transports.SubprocessTransport):
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
index 2418642..219c88a 100644
--- a/Lib/asyncio/unix_events.py
+++ b/Lib/asyncio/unix_events.py
@@ -169,9 +169,6 @@ class _UnixSelectorEventLoop(selector_events.BaseSelectorEventLoop):
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
index 2e9ec69..3c21e43 100644
--- a/Lib/asyncio/windows_events.py
+++ b/Lib/asyncio/windows_events.py
@@ -178,9 +178,6 @@ class ProactorEventLoop(proactor_events.BaseProactorEventLoop):
yield from transp._post_init()
return transp
- def _subprocess_closed(self, transport):
- pass
-
class IocpProactor:
"""Proactor implementation using IOCP."""