summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_coroutines.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-06-12 06:16:51 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-06-12 06:16:51 (GMT)
commitaea671efc61e89c93be8d0a6866bd4ee3ff7d058 (patch)
tree60b4e2fc7cb78b30faceab4cd50692a5db372ee1 /Lib/test/test_coroutines.py
parent50d4c15ba78615ce5a8e05a0ae665570fd249463 (diff)
parent70c502aacf629bd470a88dc5f139937d62376143 (diff)
downloadcpython-aea671efc61e89c93be8d0a6866bd4ee3ff7d058.zip
cpython-aea671efc61e89c93be8d0a6866bd4ee3ff7d058.tar.gz
cpython-aea671efc61e89c93be8d0a6866bd4ee3ff7d058.tar.bz2
Merge typo fixes from 3.5
Diffstat (limited to 'Lib/test/test_coroutines.py')
-rw-r--r--Lib/test/test_coroutines.py2
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)