<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Feb 27, 2014 at 1:29 PM, Chris Angelico <span dir="ltr"><<a href="mailto:rosuav@gmail.com" target="_blank">rosuav@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">+Had this facility existed early in Python's history, there would have been<br>

+no need to create dict.get() and related methods;</blockquote><div><br></div><div>FWIW, after experimenting and some consideration I've come to the conclusion that this is incorrect. 'd[k] except KeyError: default' is still much broader than dict.get(k):</div>
<div><br></div><div><div>Python 3.4.0rc1+ (default:aa2ae744e701+, Feb 24 2014, 01:22:15)</div><div>[GCC 4.6.3] on linux</div><div>Type "help", "copyright", "credits" or "license" for more information.</div>
<div>>>> expensive_calculation = hash</div><div>>>> class C:</div><div>...     _hash_cache = {}</div><div>...     def __init__(self, value):</div><div>...         self.value = value</div><div>...         if value not in self._hash_cache:</div>
<div>...             self._hash_cache[value] = expensive_calculation(value)</div><div>...     def __hash__(self):</div><div>...         return self._hash_cache[self.value]</div><div>...     def __eq__(self, other):</div><div>
...         return self.value == other</div><div>...</div><div>>>> a, b, c, d = C(1), C(2), C(3), C(4)</div><div>>>> D = {a: 1, b: 2, c: 3, d: 4}</div><div>>>></div><div>>>> a.value = 5</div>
<div>>>> print("except expr:", (D[a] except KeyError: 'default'))</div><div>except expr: default</div><div>>>> print("dict.get:", D.get(a, 'default'))</div><div>Traceback (most recent call last):</div>
<div>  File "<stdin>", line 1, in <module></div><div>  File "<stdin>", line 8, in __hash__</div><div>KeyError: 5</div></div><div><br></div></div>All in all I believe I will continue to prefer specific methods for specific use-cases; I'm -0 on the idea of an except-expression, -0 on the syntax with the mandatory parentheses around the whole thing (and so far -1 on any of the other suggested forms.) I can see the attractiveness, but frankly, all the suggested changes to the stdlib fall in two categories: easier to express (and narrower in its exception handling) with e.g. dict.get for the trivial ones, or much better written out using temporary variables for the complex ones. As soon as an except-expression has trouble fitting on two lines it becomes an unsightly mess; it no longer becomes obvious what it does from a glance. Not having except-expr may mean we keep adding methods (with different names, and slightly different semantics) to cover specific use-cases of specific types, but I can live with that.<br clear="all">
<div><br></div>-- <br>Thomas Wouters <<a href="mailto:thomas@python.org" target="_blank">thomas@python.org</a>><br><br>Hi! I'm an email virus! Think twice before sending your email to help me spread!
</div></div>