mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncio
This commit is contained in:
parent
1a170a74f7
commit
f9e49dd346
3 changed files with 29 additions and 18 deletions
|
@ -822,7 +822,7 @@ class _UnixDefaultEventLoopPolicy(events.BaseDefaultEventLoopPolicy):
|
|||
self._watcher.attach_loop(loop)
|
||||
|
||||
def get_child_watcher(self):
|
||||
"""Get the child watcher
|
||||
"""Get the watcher for child processes.
|
||||
|
||||
If not yet set, a SafeChildWatcher object is automatically created.
|
||||
"""
|
||||
|
@ -832,7 +832,7 @@ class _UnixDefaultEventLoopPolicy(events.BaseDefaultEventLoopPolicy):
|
|||
return self._watcher
|
||||
|
||||
def set_child_watcher(self, watcher):
|
||||
"""Set the child watcher"""
|
||||
"""Set the watcher for child processes."""
|
||||
|
||||
assert watcher is None or isinstance(watcher, AbstractChildWatcher)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue