From 94570acef74f12df4ff09f3736c73cc1ac730ec0 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sat, 5 Aug 2017 21:38:09 +0200 Subject: [PATCH] Move another test to be used by all versions. --- test/test_python_errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_python_errors.py b/test/test_python_errors.py index c589be2..643d02f 100644 --- a/test/test_python_errors.py +++ b/test/test_python_errors.py @@ -118,6 +118,7 @@ FAILING_EXAMPLES = [ r"u'\N{foo}'", r'b"\x"', r'b"\"', + '*a, *b = 3, 3', # Parser/tokenize.c r'"""', @@ -380,7 +381,6 @@ def test_default_except_error_postition(): ('async def foo(): yield from []', '3.5'), ('async def foo():\n yield x\n return 1', '3.6'), ('async def foo():\n yield x\n return 1', '3.6'), - ('*a, *b = 3, 3', '3.3'), ('*a = 3', '3.5'), ('del *a, b', '3.5'), ('def x(*): pass', '3.5'),