<div dir="ltr"><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Feb 27, 2019 at 9:34 AM George Castillo <<a href="mailto:gmcastil@gmail.com">gmcastil@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">The key conundrum that needs to be solved is what to do for `d1 + d2` when there are overlapping keys. I propose to make d2 win in this case, which is what happens in `d1.update(d2)` anyways. If you want it the other way, simply write `d2 + d1`.</blockquote><div><br></div><div>This would mean that addition, at least in this particular instance, is not a commutative operation.  Are there other places in Python where this is the case?<br></div></div></blockquote><div><br></div><div>Yes there are. 'a' + 'b' is not the same as 'b' + 'a'.<br></div><div><br></div><div>For non-numbers we only require + to be associative, i.e. a + b + c == (a + b) + c == a + (b + c).</div><div><br></div><div>That is satisfied for this proposal.<br></div><div> </div></div>-- <br><div dir="ltr" class="gmail_signature">--Guido van Rossum (<a href="http://python.org/~guido" target="_blank">python.org/~guido</a>)</div></div>