From: Zachary Ware Date: Wed, 5 Aug 2015 03:49:55 +0000 (-0500) Subject: Issue #24791: Add tests for things that regressed with PEP 448 X-Git-Tag: v3.5.0rc1~33^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=36948d7875da0be3b1f98bbd70775d954e8bf862;p=thirdparty%2FPython%2Fcpython.git Issue #24791: Add tests for things that regressed with PEP 448 --- diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index fb5ffc06b18b..250452322ccc 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -204,7 +204,9 @@ class GrammarTests(unittest.TestCase): d01() d01(1) d01(*(1,)) + d01(*[] or [2]) d01(**{'a':2}) + d01(**{'a':2} or {}) def d11(a, b=1): pass d11(1) d11(1, 2)