summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/python34.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basics/python34.py')
-rw-r--r--tests/basics/python34.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/basics/python34.py b/tests/basics/python34.py
index 0f6e4bafd0..609a8b6b84 100644
--- a/tests/basics/python34.py
+++ b/tests/basics/python34.py
@@ -25,7 +25,6 @@ def test_syntax(code):
except SyntaxError:
print("SyntaxError")
test_syntax("f(*a, *b)") # can't have multiple * (in 3.5 we can)
-test_syntax("f(**a, **b)") # can't have multiple ** (in 3.5 we can)
test_syntax("f(*a, b)") # can't have positional after *
test_syntax("f(**a, b)") # can't have positional after **
test_syntax("() = []") # can't assign to empty tuple (in 3.6 we can)