Re: Looking for indent advice howto in emacs python-mode



On 31 mar, 18:32, "Steven W. Orr" <ste...@xxxxxxxxxxx> 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


.