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 | b0b0e628ee453126efb16805588ef60e2601fd08 (patch) | |
tree | 1048819ba08c5f0f1db2b96abdcc0e38c16d24db /Lib/test/test_asyncio/test_unix_events.py | |
parent | 8abac348a9a6d8f64527f913609789f50251ba58 (diff) | |
download | cpython-b0b0e628ee453126efb16805588ef60e2601fd08.zip cpython-b0b0e628ee453126efb16805588ef60e2601fd08.tar.gz cpython-b0b0e628ee453126efb16805588ef60e2601fd08.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) |