Skip to content

Commit d6afe3b

Browse files
Cleanup a couple of comments left on PR 28775 post-merge. (GH-29079)
(cherry picked from commit 1dfac27) Co-authored-by: Gregory P. Smith <greg@krypto.org>
1 parent 5537b9f commit d6afe3b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/asyncio/unix_events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1379,7 +1379,7 @@ def add_child_handler(self, pid, callback, *args):
13791379
def remove_child_handler(self, pid):
13801380
# asyncio never calls remove_child_handler() !!!
13811381
# The method is no-op but is implemented because
1382-
# abstract base classes requires it
1382+
# abstract base classes require it.
13831383
return True
13841384

13851385
def attach_loop(self, loop):

Lib/tkinter/test/test_ttk/test_widgets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ def test_add_and_hidden(self):
971971
tabs = self.nb.tabs()
972972

973973
curr = self.nb.index('current')
974-
# verify that the tab gets read at its previous position
974+
# verify that the tab gets re-added at its previous position
975975
child2_index = self.nb.index(self.child2)
976976
self.nb.hide(self.child2)
977977
self.nb.add(self.child2)

0 commit comments

Comments
 (0)