Issue #24791: Add tests for things that regressed with PEP 448

This commit is contained in:
Zachary Ware 2015-08-04 22:49:55 -05:00
parent 920a335e97
commit 36948d7875

View file

@ -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)