From 1ed023b7c09efe339817f0a0effca6a605f5d0a3 Mon Sep 17 00:00:00 2001
From: "Miss Islington (bot)"
 <31488909+miss-islington@users.noreply.github.com>
Date: Wed, 3 Aug 2022 14:43:01 -0700
Subject: [PATCH] gh-95597: Fix typo in Lib directory files (GH-95599)

(cherry picked from commit b53aed76d26419fc7449c358c6035c9afe055e16)

Co-authored-by: Jo, Yunjin <black33jo@gmail.com>
---
 Lib/idlelib/config.py                     | 2 +-
 Lib/test/test_asyncio/test_unix_events.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Lib/idlelib/config.py b/Lib/idlelib/config.py
index 5ce5f4a4f7b..2b09d79470b 100644
--- a/Lib/idlelib/config.py
+++ b/Lib/idlelib/config.py
@@ -578,7 +578,7 @@ def IsCoreBinding(self, virtualEvent):
         """
         return ('<<'+virtualEvent+'>>') in self.GetCoreKeys()
 
-# TODO make keyBindins a file or class attribute used for test above
+# TODO make keyBindings a file or class attribute used for test above
 # and copied in function below.
 
     former_extension_events = {  #  Those with user-configurable keys.
diff --git a/Lib/test/test_asyncio/test_unix_events.py b/Lib/test/test_asyncio/test_unix_events.py
index 2f68459d30c..1d922783ce3 100644
--- a/Lib/test/test_asyncio/test_unix_events.py
+++ b/Lib/test/test_asyncio/test_unix_events.py
@@ -1530,7 +1530,7 @@ def test_sigchld_child_reaped_elsewhere(self, m_waitpid):
             self.watcher._sig_chld()
 
         if isinstance(self.watcher, asyncio.FastChildWatcher):
-            # here the FastChildWatche enters a deadlock
+            # here the FastChildWatcher enters a deadlock
             # (there is no way to prevent it)
             self.assertFalse(callback.called)
         else:
-- 
GitLab