summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/unix_events.py
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2021-10-20 16:17:52 (GMT)
committerGitHub <noreply@github.com>2021-10-20 16:17:52 (GMT)
commit1dfac27dffbe771f9d88bd1726f7362ce0341437 (patch)
tree7d4e045c49be620b0a9aabbcd50277860645f5b8 /Lib/asyncio/unix_events.py
parent81520fe677d15cc7f9af5140bc5f9eca8409ad90 (diff)
downloadcpython-1dfac27dffbe771f9d88bd1726f7362ce0341437.zip
cpython-1dfac27dffbe771f9d88bd1726f7362ce0341437.tar.gz
cpython-1dfac27dffbe771f9d88bd1726f7362ce0341437.tar.bz2
Cleanup a couple of comments left on PR 28775 post-merge. (GH-29079)
Diffstat (limited to 'Lib/asyncio/unix_events.py')
-rw-r--r--Lib/asyncio/unix_events.py2
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):