changeset: 97261:3c170f68407f branch: 3.4 parent: 97258:9964edf2fd1e user: Zachary Ware date: Tue Aug 04 22:49:55 2015 -0500 files: Lib/test/test_grammar.py description: Issue #24791: Add tests for things that regressed with PEP 448 diff -r 9964edf2fd1e -r 3c170f68407f Lib/test/test_grammar.py --- a/Lib/test/test_grammar.py Tue Aug 04 21:54:54 2015 -0500 +++ b/Lib/test/test_grammar.py Tue Aug 04 22:49:55 2015 -0500 @@ -204,7 +204,9 @@ 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)