Fix a typo
This commit is contained in:
parent
c7790e3123
commit
0cf17512f7
|
@ -25,7 +25,7 @@ Arbitrarily positioned unpacking operators::
|
||||||
|
|
||||||
>>> print(*[1], *[2], 3)
|
>>> print(*[1], *[2], 3)
|
||||||
1 2 3
|
1 2 3
|
||||||
>>> dict(**{'x': 1}, y=3, **{'z': 2})
|
>>> dict(**{'x': 1}, y=2, **{'z': 3})
|
||||||
{'x': 1, 'y': 2, 'z': 3}
|
{'x': 1, 'y': 2, 'z': 3}
|
||||||
|
|
||||||
Function calls currently have the restriction that keyword arguments
|
Function calls currently have the restriction that keyword arguments
|
||||||
|
|
Loading…
Reference in New Issue