Skip to content

Commit

Permalink
bpo-32482: Fix suspicious code in tests for syntax and grammar. (GH-5086
Browse files Browse the repository at this point in the history
) (#5095)

(cherry picked from commit 0cc99c8)
  • Loading branch information
miss-islington authored and serhiy-storchaka committed Jan 4, 2018
1 parent 1e6d852 commit a70d5ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
11 changes: 5 additions & 6 deletions Lib/test/test_grammar.py
Expand Up @@ -575,6 +575,10 @@ def f(*args, **kwargs):
self.assertEqual(f(spam='fried', **{'eggs':'scrambled'}),
((), {'eggs':'scrambled', 'spam':'fried'}))

# Check ast errors in *args and *kwargs
check_syntax_error(self, "f(*g(1=2))")
check_syntax_error(self, "f(**g(1=2))")

# argument annotation tests
def f(x) -> list: pass
self.assertEqual(f.__annotations__, {'return': list})
Expand Down Expand Up @@ -616,10 +620,6 @@ def f(x=1): return closure
def f(*, k=1): return closure
def f() -> int: return closure

# Check ast errors in *args and *kwargs
check_syntax_error(self, "f(*g(1=2))")
check_syntax_error(self, "f(**g(1=2))")

# Check trailing commas are permitted in funcdef argument list
def f(a,): pass
def f(*args,): pass
Expand Down Expand Up @@ -1056,7 +1056,6 @@ def test_try(self):
try: 1/0
except EOFError: pass
except TypeError as msg: pass
except RuntimeError as msg: pass
except: pass
else: pass
try: 1/0
Expand Down Expand Up @@ -1165,7 +1164,7 @@ def test_selectors(self):
d[1,2] = 3
d[1,2,3] = 4
L = list(d)
L.sort(key=lambda x: x if isinstance(x, tuple) else ())
L.sort(key=lambda x: (type(x).__name__, x))
self.assertEqual(str(L), '[1, (1,), (1, 2), (1, 2, 3)]')

def test_atoms(self):
Expand Down
4 changes: 2 additions & 2 deletions Lib/test/test_syntax.py
Expand Up @@ -600,12 +600,12 @@ def test_kwargs_last(self):
"positional argument follows keyword argument")

def test_kwargs_last2(self):
self._check_error("int(**{base: 10}, '2')",
self._check_error("int(**{'base': 10}, '2')",
"positional argument follows "
"keyword argument unpacking")

def test_kwargs_last3(self):
self._check_error("int(**{base: 10}, *['2'])",
self._check_error("int(**{'base': 10}, *['2'])",
"iterable argument unpacking follows "
"keyword argument unpacking")

Expand Down

0 comments on commit a70d5ff

Please sign in to comment.