diff options
author | Jo, Yunjin <black33jo@gmail.com> | 2022-08-04 06:16:15 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 17:16:15 -0400 |
commit | b53aed76d26419fc7449c358c6035c9afe055e16 (patch) | |
tree | 9b8ffa34da5a3b25952a72dd7fc697f5d7b52e0e /Lib/test/test_asyncio/test_unix_events.py | |
parent | 6bde34000d70dfefafa71e54c8cb5672f423073c (diff) | |
download | cpython-b53aed76d26419fc7449c358c6035c9afe055e16.tar.gz cpython-b53aed76d26419fc7449c358c6035c9afe055e16.zip |
gh-95597: Fix typo in Lib directory files (#95599)
Diffstat (limited to 'Lib/test/test_asyncio/test_unix_events.py')
-rw-r--r-- | Lib/test/test_asyncio/test_unix_events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_unix_events.py b/Lib/test/test_asyncio/test_unix_events.py index 9918165909f..5bad21ecbae 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: |