diff options
| author | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-19 03:27:48 (GMT) |
|---|---|---|
| committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-19 03:27:48 (GMT) |
| commit | dec1a45fd1b37d4688fa5846a0d32a2393808fb1 (patch) | |
| tree | c0affa11a1d58436f2b109e2330bf104ae000afd /Lib/test/test_asyncio/test_unix_events.py | |
| parent | 74d519fcc685f903a9127987ae53ff75eaf17d73 (diff) | |
| download | cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.zip cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.tar.gz cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.tar.bz2 | |
asyncio: Fix spelling and typos.
Thanks to Vajrasky Kok for discovering some of them.
Diffstat (limited to 'Lib/test/test_asyncio/test_unix_events.py')
| -rw-r--r-- | Lib/test/test_asyncio/test_unix_events.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_asyncio/test_unix_events.py b/Lib/test/test_asyncio/test_unix_events.py index 7b5196c..c0f205e 100644 --- a/Lib/test/test_asyncio/test_unix_events.py +++ b/Lib/test/test_asyncio/test_unix_events.py @@ -965,7 +965,7 @@ class ChildWatcherTestsMixin: self.assertFalse(m.WEXITSTATUS.called) self.assertFalse(m.WTERMSIG.called) - # childen are running + # children are running self.watcher._sig_chld() self.assertFalse(callback1.called) @@ -1069,7 +1069,7 @@ class ChildWatcherTestsMixin: self.assertFalse(m.WEXITSTATUS.called) self.assertFalse(m.WTERMSIG.called) - # childen are running + # children are running self.watcher._sig_chld() self.assertFalse(callback1.called) @@ -1425,7 +1425,7 @@ class ChildWatcherTestsMixin: self.add_zombie(61, 11) self.add_zombie(62, -5) - # SIGCHLD was not catched + # SIGCHLD was not caught self.assertFalse(callback1.called) self.assertFalse(callback2.called) self.assertFalse(callback3.called) |
