From 911b6ebd9ecb533d03c3ee778a60911c2418031d Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Tue, 2 Jan 2018 17:23:09 +0200 Subject: [PATCH] Fix suspicious code in tests for syntax and grammar. --- Lib/test/test_grammar.py | 11 +++++------ Lib/test/test_syntax.py | 4 ++-- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index 823315f8cd0dfc..027f96adda5e25 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -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}) @@ -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 @@ -1017,7 +1017,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 @@ -1126,7 +1125,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): diff --git a/Lib/test/test_syntax.py b/Lib/test/test_syntax.py index e161f56d30f214..2b96a94401a87d 100644 --- a/Lib/test/test_syntax.py +++ b/Lib/test/test_syntax.py @@ -668,12 +668,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")