> Readability also includes more than just the source code; as has already
> been stated:
> 
>  if(cond) {
>    stmt1;
> +  stmt2;
>  }
> 
> vs.
> 
> -if(cond)
> +if(cond) {
>    stmt1;
> +  stmt2;
> +}
> 
> I find the diff version that already had braces in place much more
> readable.

Is it really *much* more readable? I have no difficulties reading either
(although I had preferred a space after the if; this worries me
more than the double if line).

Regards,
Martin
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to