cpython (3.5): test_coroutines: remove whitespace
https://hg.python.org/cpython/rev/73c7d29a8c10 changeset: 96726:73c7d29a8c10 branch: 3.5 parent: 96724:30b676e8b21f user: Yury Selivanov <yselivanov@sprymix.com> date: Tue Jun 30 12:51:12 2015 -0400 summary: test_coroutines: remove whitespace files: 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 --- a/Lib/test/test_coroutines.py +++ b/Lib/test/test_coroutines.py @@ -113,7 +113,7 @@ '{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) -- Repository URL: https://hg.python.org/cpython
participants (1)
-
yury.selivanov