From 86cd7d6b756bb0f99b7854c75dfcd24e1ec3bdbc Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Tue, 30 Jun 2015 12:51:12 -0400 Subject: [PATCH] test_coroutines: remove whitespace --- Lib/test/test_coroutines.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_coroutines.py b/Lib/test/test_coroutines.py index e869fd216a1..a84e27a0d50 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)