Message 234415 - Python tracker (original) (raw)
SGTM
On Tue, Jan 20, 2015 at 4:08 PM, Neil Girdhar <report@bugs.python.org> wrote:
Neil Girdhar added the comment:
That makes sense.
If you wanted to override, you could always write:
f(**{**a, **b, 'x': 5})
rather than
f(**a, **b, x=5)
Should I go ahead and fix it so that overriding is always wrong? E.g.,
f(**{'x': 3}, **{'x': 4})
which currently works?
Python tracker <report@bugs.python.org> <http://bugs.python.org/issue2292>