summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_coroutines.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2015-06-30 16:51:12 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2015-06-30 16:51:12 (GMT)
commit86cd7d6b756bb0f99b7854c75dfcd24e1ec3bdbc (patch)
treed44b73b70f7e9c7369003b1723e41527f8f34311 /Lib/test/test_coroutines.py
parent9dec03571f2ec588dfc15ff438c85fe25989dcc1 (diff)
downloadcpython-86cd7d6b756bb0f99b7854c75dfcd24e1ec3bdbc.zip
cpython-86cd7d6b756bb0f99b7854c75dfcd24e1ec3bdbc.tar.gz
cpython-86cd7d6b756bb0f99b7854c75dfcd24e1ec3bdbc.tar.bz2
test_coroutines: remove whitespace
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 e869fd2..a84e27a 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)