Home
last modified time | relevance | path

Searched refs:SafeChildWatcher (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Doc/library/
Dasyncio-policy.rst136 :class:`MultiLoopChildWatcher`, :class:`SafeChildWatcher`, and
236 .. class:: SafeChildWatcher
258 :class:`SafeChildWatcher`.
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_unix_events.py1153 if isinstance(self.watcher, asyncio.SafeChildWatcher) or pid != -1:
1818 return asyncio.SafeChildWatcher()
1859 self.assertIsInstance(watcher, asyncio.SafeChildWatcher)
1865 policy.set_child_watcher(asyncio.SafeChildWatcher())
1877 watcher = asyncio.SafeChildWatcher()
Dtest_subprocess.py695 Watcher = unix_events.SafeChildWatcher
Dtest_streams.py757 watcher = asyncio.SafeChildWatcher()
Dtest_events.py2043 watcher = asyncio.SafeChildWatcher()
2647 watcher = asyncio.SafeChildWatcher()
/external/python/cpython3/Lib/asyncio/
Dunix_events.py1026 class SafeChildWatcher(BaseChildWatcher): class