Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b53aed7

Browse files
authoredAug 3, 2022
pythongh-95597: Fix typo in Lib directory files (python#95599)
1 parent 6bde340 commit b53aed7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎Lib/idlelib/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ def IsCoreBinding(self, virtualEvent):
578578
"""
579579
return ('<<'+virtualEvent+'>>') in self.GetCoreKeys()
580580

581-
# TODO make keyBindins a file or class attribute used for test above
581+
# TODO make keyBindings a file or class attribute used for test above
582582
# and copied in function below.
583583

584584
former_extension_events = { # Those with user-configurable keys.

‎Lib/test/test_asyncio/test_unix_events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1531,7 +1531,7 @@ def test_sigchld_child_reaped_elsewhere(self, m_waitpid):
15311531
self.watcher._sig_chld()
15321532

15331533
if isinstance(self.watcher, asyncio.FastChildWatcher):
1534-
# here the FastChildWatche enters a deadlock
1534+
# here the FastChildWatcher enters a deadlock
15351535
# (there is no way to prevent it)
15361536
self.assertFalse(callback.called)
15371537
else:

0 commit comments

Comments
 (0)
Please sign in to comment.