On Tue, Sep 13, 2016 at 7:21 AM, Thomas 'PointedEars' Lahn
<pointede...@web.de> wrote:
> If I knew that it is always going to be a list or a tuple, I would check its
> length instead:
>
>   if len(errors) == 0:

I wouldn't. I'd use boolification here too. Only if I had to
distinguish between None, [], and [1,2,3], would I use a more explicit
check (and it wouldn't be "== []", it would be probing for None).

ChrisA
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to