Rgemini wrote:
> I do it that way too. But I put exit comments next to the returns so they
> stand out more. Something like
>
> return foo ##### exit because foo = bar #####
Wouldn't that be redundant if the code read this way?
if foo == bar:
return foo
-Peter