cpython (merge 3.5 -> default): Merge 3.5
https://hg.python.org/cpython/rev/5d43f103f66b changeset: 96727:5d43f103f66b parent: 96725:9598bc916186 parent: 96726:73c7d29a8c10 user: Yury Selivanov <yselivanov@sprymix.com> date: Tue Jun 30 12:51:29 2015 -0400 summary: Merge 3.5 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