Kaydet (Commit) 36948d78 authored tarafından Zachary Ware's avatar Zachary Ware

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

üst 920a335e
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment