On Thu, Sep 1, 2011 at 12:29, Chris Fuller
<cfuller...@thinkingplanet.net> wrote:


> *Ahem*
>
> def is_hashable(object):
>   try:
>        hash(object)
>    except TypeError:
>        return False
>
>    return True

Why is that preferred to

def is_hashable(object):
    try:
        hash(object)
        return True
    except TypeError:
        return False

??

Dick
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to