From 34f26ea862d18c61a66f36f44277bb954bf36cd1 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 2 Oct 2015 13:01:47 +0100 Subject: tests: Allow tests to pass against CPython 3.5. All breaking changes going from 3.4 to 3.5 are contained in basics/python34.py. --- tests/basics/syntaxerror.py | 4 ---- 1 file changed, 4 deletions(-) (limited to 'tests/basics/syntaxerror.py') diff --git a/tests/basics/syntaxerror.py b/tests/basics/syntaxerror.py index d6a3e3043..24c3fe6e4 100644 --- a/tests/basics/syntaxerror.py +++ b/tests/basics/syntaxerror.py @@ -83,10 +83,6 @@ test_syntax("nonlocal a") # default except must be last test_syntax("try:\n a\nexcept:\n pass\nexcept:\n pass") -# can't have multiple * or ** -test_syntax("f(*a, *b)") -test_syntax("f(**a, **b)") - # LHS of keywords must be id's test_syntax("f(1=2)") -- cgit v1.2.3