diff --git a/pep-0448.txt b/pep-0448.txt index a97f57492..d91819c63 100644 --- a/pep-0448.txt +++ b/pep-0448.txt @@ -25,7 +25,7 @@ Arbitrarily positioned unpacking operators:: >>> print(*[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} Function calls currently have the restriction that keyword arguments