diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-30 12:51:29 -0400 |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2015-06-30 12:51:29 -0400 |
commit | b2c42c2a8f308626bba43db31a78907bf6e07dc3 (patch) | |
tree | 45dfbfd5e436949962c7db744cda3373d7f4533d | |
parent | 3bd2b98c29c1cdc75fd093eb48b3517f1295b50e (diff) | |
parent | 86cd7d6b756bb0f99b7854c75dfcd24e1ec3bdbc (diff) | |
download | cpython-git-b2c42c2a8f308626bba43db31a78907bf6e07dc3.tar.gz |
Merge 3.5
-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 e869fd216a..a84e27a0d5 100644 --- a/Lib/test/test_coroutines.py +++ b/Lib/test/test_coroutines.py @@ -113,7 +113,7 @@ class AsyncBadSyntaxTest(unittest.TestCase): '{await a for a in b}', '{await a: c for a in b}'}: - with self.assertRaisesRegex( SyntaxError, 'await.*in comprehen'): + with self.assertRaisesRegex(SyntaxError, 'await.*in comprehen'): exec('async def f():\n\t{}'.format(comp), ns, ns) |