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.py600 def get_child_watcher(self): member in AbstractEventLoopPolicy
764 def get_child_watcher(): function
766 return get_event_loop_policy().get_child_watcher()
Dunix_events.py188 with events.get_child_watcher() as watcher:
1444 def get_child_watcher(self): member in _UnixDefaultEventLoopPolicy
/external/python/cpython3/Doc/library/
Dasyncio-policy.rst73 .. method:: get_child_watcher()
145 .. function:: get_child_watcher()
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_subprocess.py538 asyncio.get_child_watcher()._callbacks.clear()
677 watcher = policy.get_child_watcher()
Dutils.py521 watcher = policy.get_child_watcher()
Dtest_unix_events.py1835 watcher = policy.get_child_watcher()
1840 self.assertIs(watcher, policy.get_child_watcher())
1848 self.assertIs(watcher, policy.get_child_watcher())
1857 watcher = policy.get_child_watcher()
Dtest_events.py2534 self.assertRaises(NotImplementedError, policy.get_child_watcher)