]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-95597: Fix typo in Lib directory files (#95599)
authorJo, Yunjin <black33jo@gmail.com>
Wed, 3 Aug 2022 21:16:15 +0000 (06:16 +0900)
committerGitHub <noreply@github.com>
Wed, 3 Aug 2022 21:16:15 +0000 (17:16 -0400)
Lib/idlelib/config.py
Lib/test/test_asyncio/test_unix_events.py

index 5ce5f4a4f7bd0d467ceaee880cf928be4e10352d..2b09d79470b47c48dde916301dabfcb036e7c31e 100644 (file)
@@ -578,7 +578,7 @@ class IdleConf:
         """
         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.
index 9918165909f7f8f3e78b152dfe39a0731b7fcb15..5bad21ecbae4afa6512361a4d787299ad46dbf93 100644 (file)
@@ -1531,7 +1531,7 @@ class ChildWatcherTestsMixin:
             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: