From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 30 Dec 2018 22:07:05 +0000 (-0800) Subject: Fix typo in documentation of AbstractEventLoopPolicy.set_child_watcher() (GH-11369) X-Git-Tag: v3.7.3rc1~190 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c74061d49b2b8275b376e212cccf2922d022e607;p=thirdparty%2FPython%2Fcpython.git Fix typo in documentation of AbstractEventLoopPolicy.set_child_watcher() (GH-11369) `set_child_watcher()` *sets* the watcher. (cherry picked from commit 1b29c03c95dbffa05f2bac0f8f1a36b21606a504) Co-authored-by: sth --- diff --git a/Doc/library/asyncio-policy.rst b/Doc/library/asyncio-policy.rst index cab25934d782..07842daa28b8 100644 --- a/Doc/library/asyncio-policy.rst +++ b/Doc/library/asyncio-policy.rst @@ -81,7 +81,7 @@ The abstract event loop policy base class is defined as follows: .. method:: set_child_watcher(watcher) - Get the current child process watcher to *watcher*. + Set the current child process watcher to *watcher*. This function is Unix specific.