bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#14425: New option python-indent-parens-as-block


From: Peter Oliver
Subject: bug#14425: New option python-indent-parens-as-block
Date: Mon, 20 May 2013 16:02:01 +0100 (BST)
User-agent: Alpine 2.03 (LFD 1266 2009-07-14)

The Python style guide, http://www.python.org/dev/peps/pep-0008/, says:

The closing brace/bracket/parenthesis on multi-line constructs may
either line up under the last item of the list, as in:

my_list = [
    1, 2, 3,
    4, 5, 6,
    ]
result = some_function_that_takes_arguments(
    'a', 'b', 'c',
    'd', 'e', 'f',
    )

or it may be lined up under the first character of the line that
starts the multi-line construct, as in:

my_list = [
    1, 2, 3,
    4, 5, 6,
]
result = some_function_that_takes_arguments(
    'a', 'b', 'c',
    'd', 'e', 'f',
)

At present, Emacs uses the former style.  I'd prefer there to be an option to 
enable use of the latter style.

I am preparing a patch.

--
Peter Oliver





reply via email to

[Prev in Thread] Current Thread [Next in Thread]