summaryrefslogtreecommitdiff
path: root/tests/basics/syntaxerror.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-10-02 13:01:47 +0100
committerDamien George <damien.p.george@gmail.com>2015-10-02 13:01:47 +0100
commit34f26ea862d18c61a66f36f44277bb954bf36cd1 (patch)
tree12b20d3fd619dfb564ee5f1c347e30a646ea4e1a /tests/basics/syntaxerror.py
parent9e0a3d46b6eb176a3450d565c9e172eb22f9c8dc (diff)
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.
Diffstat (limited to 'tests/basics/syntaxerror.py')
-rw-r--r--tests/basics/syntaxerror.py4
1 files changed, 0 insertions, 4 deletions
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)")