diff options
-rw-r--r-- | Lib/idlelib/config.py | 2 | ||||
-rw-r--r-- | 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 5ce5f4a4f7..2b09d79470 100644 --- a/Lib/idlelib/config.py +++ b/Lib/idlelib/config.py @@ -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. diff --git a/Lib/test/test_asyncio/test_unix_events.py b/Lib/test/test_asyncio/test_unix_events.py index 9918165909..5bad21ecba 100644 --- a/Lib/test/test_asyncio/test_unix_events.py +++ b/Lib/test/test_asyncio/test_unix_events.py @@ -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: |