diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-12 06:47:57 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-12 06:47:57 (GMT) |
commit | cbe6142135667f045a21264619a61d74a9a1ff67 (patch) | |
tree | de2a2d4ff37ebcda3a786ddd8946f3932e5f7144 /Lib/test/test_coroutines.py | |
parent | 9062c261a4f9268f4621548ec205c80411f75b6e (diff) | |
parent | 70c502aacf629bd470a88dc5f139937d62376143 (diff) | |
download | cpython-cbe6142135667f045a21264619a61d74a9a1ff67.zip cpython-cbe6142135667f045a21264619a61d74a9a1ff67.tar.gz cpython-cbe6142135667f045a21264619a61d74a9a1ff67.tar.bz2 |
Merge heads
Diffstat (limited to 'Lib/test/test_coroutines.py')
-rw-r--r-- | Lib/test/test_coroutines.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_coroutines.py b/Lib/test/test_coroutines.py index 4f725ae..d0cefb0 100644 --- a/Lib/test/test_coroutines.py +++ b/Lib/test/test_coroutines.py @@ -1423,7 +1423,7 @@ class CoroutineTest(unittest.TestCase): with warnings.catch_warnings(): warnings.simplefilter("error") - # Test that __aiter__ that returns an asyncronous iterator + # Test that __aiter__ that returns an asynchronous iterator # directly does not throw any warnings. run_async(main()) self.assertEqual(I, 111011) |