mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
allow test node after ** in calls (closes #24176)
This commit is contained in:
parent
8de32d906f
commit
de12b79cd6
4 changed files with 7 additions and 10 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue