On 19/10/2019 19:02, David Mertz wrote:
I am strong -1 on the proposal.

The plus operation on two dictionaries feels far more natural as a
vectorised merge, were it to mean anything.  E.g., I'd expect

{'a': 5, 'b': 4} + {'a': 3, 'b': 1}
{'a': 8, 'b': 5}

That's only a natural expectation if you also expect the values in your dict to be addable (in the sense of doing something useful with a "+" operator). It never occurs to me to make that assumption because a fair amount of the time it isn't true in my code.

--
Rhodri James *-* Kynesim Ltd
_______________________________________________
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/ACOFRBPMCUQ42LXR6SZ24P6Q5ALI4FPE/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to