Home
last modified time | relevance | path

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

/third_party/python/Lib/asyncio/
Devents.py614 def get_child_watcher(self): member in AbstractEventLoopPolicy
785 def get_child_watcher(): function
787 return get_event_loop_policy().get_child_watcher()
Dunix_events.py198 with events.get_child_watcher() as watcher:
1444 def get_child_watcher(self): member in _UnixDefaultEventLoopPolicy
/third_party/python/Doc/library/
Dasyncio-policy.rst73 .. method:: get_child_watcher()
145 .. function:: get_child_watcher()
/third_party/python/Lib/test/test_asyncio/
Dtest_subprocess.py539 asyncio.get_child_watcher()._callbacks.clear()
658 watcher = policy.get_child_watcher()
Dtest_unix_events.py1705 watcher = policy.get_child_watcher()
1710 self.assertIs(watcher, policy.get_child_watcher())
1718 self.assertIs(watcher, policy.get_child_watcher())
1727 watcher = policy.get_child_watcher()
Dutils.py523 watcher = policy.get_child_watcher()
Dtest_events.py2557 self.assertRaises(NotImplementedError, policy.get_child_watcher)