Home
last modified time | relevance | path

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

/third_party/python/Doc/library/
Dasyncio-policy.rst136 :class:`MultiLoopChildWatcher`, :class:`SafeChildWatcher`, and
236 .. class:: SafeChildWatcher
258 :class:`SafeChildWatcher`.
/third_party/python/Lib/test/test_asyncio/
Dtest_unix_events.py1153 if isinstance(self.watcher, asyncio.SafeChildWatcher) or pid != -1:
1688 return asyncio.SafeChildWatcher()
1729 self.assertIsInstance(watcher, asyncio.SafeChildWatcher)
1735 policy.set_child_watcher(asyncio.SafeChildWatcher())
1747 watcher = asyncio.SafeChildWatcher()
Dtest_subprocess.py678 Watcher = unix_events.SafeChildWatcher
Dtest_streams.py732 watcher = asyncio.SafeChildWatcher()
Dtest_events.py2066 watcher = asyncio.SafeChildWatcher()
2670 watcher = asyncio.SafeChildWatcher()
/third_party/python/Lib/asyncio/
Dunix_events.py1022 class SafeChildWatcher(BaseChildWatcher): class