Looking for indent advice howto in emacs python-mode

bruno.desthuilliers at gmail.com bruno.desthuilliers at gmail.com
Mon Mar 31 15:36:13 EDT 2008


On 31 mar, 18:32, "Steven W. Orr" <ste... at syslang.net> wrote:
> Here's what I want to do:
>
> if ( ( v == 1 )
>    or ( v == 2 )
>    or ( v == 3 ) ):
>      pass

Why the parens ?

if a == 1 \
   or b == 2 \
   or c == 3:
    pass





More information about the Python-list mailing list