diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-06-05 12:07:14 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-06-05 12:07:14 +0200 |
commit | 7088b99eb8adfe16b5602bb7447d760915036a26 (patch) | |
tree | aa68432b9c4c65bbe8bc1720ea4c4547dcebad44 /Lib/asyncio/unix_events.py | |
parent | ae0767bb5be2f6c4288f313eea7bcb529c9c0923 (diff) | |
parent | f9e49dd346711dff6d4301a2edc0ca23f7f12b6f (diff) | |
download | cpython-git-7088b99eb8adfe16b5602bb7447d760915036a26.tar.gz |
(Merge 3.4) Tulip issue 83, Python issue #21252: Fill some XXX docstrings in asyncio
Diffstat (limited to 'Lib/asyncio/unix_events.py')
-rw-r--r-- | Lib/asyncio/unix_events.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py index 230fbc38b4..acb327d998 100644 --- a/Lib/asyncio/unix_events.py +++ b/Lib/asyncio/unix_events.py @@ -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) |