On Mon, 2 Jan 2012 14:44:49 +1000
Nick Coghlan <ncogh...@gmail.com> wrote:
> I've been having an occasional argument with Benjamin regarding braces
> in 4-line if statements:
> 
>   if (cond)
>     statement;
>   else
>     statement;
> 
> vs.
> 
>   if (cond) {
>     statement;
>   } else {
>     statement;
>   }

Good, I was afraid python-dev was getting a bit futile with all these
security concerns about hash functions.

I don't like having the else on the same line as the closing brace,
and prefer:

   if (cond) {
       statement;
   }
   else {
       statement;
   }

That said, I agree with Benjamin: the shorter form is visually lighter
and should not be frown upon.

Regards

Not-frowning Antoine.


_______________________________________________
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