[Python-checkins] cpython (2.7): Closes #14306: clarify expensiveness of try-except and update code snippet

Georg Brandl g.brandl at gmx.net
Sun Mar 18 16:03:06 CET 2012


On 03/18/2012 02:49 PM, Nick Coghlan wrote:
> On Sun, Mar 18, 2012 at 1:58 AM, georg.brandl
> <python-checkins at python.org> wrote:
>> +catching an exception is expensive.  In versions of Python prior to 2.0 it was
>> +common to use this idiom::
> 
> Actually, given the "prior to 2.0" caveat, "mydict.has_key(key)" is
> right: the "key in mydict" version was only added in 2.2.
> 
> This answer probably needs more improvements than just modernising the
> example that is already there.

Yep.  I also wondered what was left out, since the past tense "was common..."
suggests that something is missing.  But for the moment I just wanted to get
rid of legacy code that might induce people to use has_key().

Georg



More information about the Python-checkins mailing list