allow test node after ** in calls (closes #24176)

This commit is contained in:
Benjamin Peterson 2015-05-16 09:44:45 -04:00
parent 8de32d906f
commit de12b79cd6
4 changed files with 7 additions and 10 deletions

View file

@ -206,6 +206,7 @@ class GrammarTests(unittest.TestCase):
d01(1)
d01(*(1,))
d01(**{'a':2})
d01(**{'a':2} or {})
def d11(a, b=1): pass
d11(1)
d11(1, 2)