Home
last modified time | relevance | path

Searched refs:get_child_watcher (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Devents.py601 def get_child_watcher(self): member in AbstractEventLoopPolicy
765 def get_child_watcher(): function
767 return get_event_loop_policy().get_child_watcher()
Dunix_events.py185 with events.get_child_watcher() as watcher:
1119 def get_child_watcher(self): member in _UnixDefaultEventLoopPolicy
/external/python/cpython3/Doc/library/
Dasyncio-policy.rst73 .. method:: get_child_watcher()
131 .. function:: get_child_watcher()
Dasyncio-subprocess.rst303 :func:`get_child_watcher` function in the main thread to instantiate
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_unix_events.py1804 watcher = policy.get_child_watcher()
1809 self.assertIs(watcher, policy.get_child_watcher())
1818 self.assertIs(watcher, policy.get_child_watcher())
1825 watcher = policy.get_child_watcher()
1839 watcher = policy.get_child_watcher()
1856 watcher = policy.get_child_watcher()
Dtest_subprocess.py464 asyncio.get_child_watcher()._callbacks.clear()
Dtest_events.py3097 self.assertRaises(NotImplementedError, policy.get_child_watcher)