diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-10-20 16:42:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 16:42:39 (GMT) |
commit | d6afe3be0106818454e1aac07bebe6d5e75bb38d (patch) | |
tree | d20509eb37e2760c24b9ad9d7432a552e874f238 /Lib/asyncio | |
parent | 5537b9f10510735447bea81079ac586f46decf20 (diff) | |
download | cpython-d6afe3be0106818454e1aac07bebe6d5e75bb38d.zip cpython-d6afe3be0106818454e1aac07bebe6d5e75bb38d.tar.gz cpython-d6afe3be0106818454e1aac07bebe6d5e75bb38d.tar.bz2 |
Cleanup a couple of comments left on PR 28775 post-merge. (GH-29079)
(cherry picked from commit 1dfac27dffbe771f9d88bd1726f7362ce0341437)
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Diffstat (limited to 'Lib/asyncio')
-rw-r--r-- | Lib/asyncio/unix_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/unix_events.py b/Lib/asyncio/unix_events.py index 4cef914..c88b818 100644 --- a/Lib/asyncio/unix_events.py +++ b/Lib/asyncio/unix_events.py @@ -1379,7 +1379,7 @@ class ThreadedChildWatcher(AbstractChildWatcher): def remove_child_handler(self, pid): # asyncio never calls remove_child_handler() !!! # The method is no-op but is implemented because - # abstract base classes requires it + # abstract base classes require it. return True def attach_loop(self, loop): |