Skip to content

Commit 50e8b2f

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 <[email protected]>
1 parent 15cd7a7 commit 50e8b2f

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
@@ -1383,7 +1383,7 @@ def add_child_handler(self, pid, callback, *args):
13831383
def remove_child_handler(self, pid):
13841384
# asyncio never calls remove_child_handler() !!!
13851385
# The method is no-op but is implemented because
1386-
# abstract base classes requires it
1386+
# abstract base classes require it.
13871387
return True
13881388

13891389
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)