Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #50142
| References | <CAAF+z6Hp=TZJwcDgyT94cv6Mx3Gy4gxSiZ640b9voAAjgsi6dw@mail.gmail.com> |
|---|---|
| From | Joshua Landau <joshua.landau.ws@gmail.com> |
| Date | 2013-07-08 11:39 +0100 |
| Subject | Re: A small question about PEP 8 |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.4380.1373280314.3114.python-list@python.org> (permalink) |
On 8 July 2013 00:32, Xue Fuqiao <xfq.free@gmail.com> wrote:
> Hi all,
>
> (English is not my native language; please excuse typing errors.)
>
> I'm a Python newbie and just started reading PEP 8. PEP 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',
> | )
> -----------------------------------------------------------------------
>
> I think the last item in my_list/result is 6/'f', respectively. So why
> doesn't the bracket/paren line up _under_ the last item? ISTM the code
> isn't consistent with the description.
>
> I have searched the archive of c.l.p and the web, but nothing helped.
> Can anyone point me in the right direction?
You will grow to be a wonderful pedant. What it means is that the
indentation will match the last one. Imagine:
"""
a_wonderful_set_of_things = {
bannanas_made_of_apples,
chocolate_covered_horns,
doors_that_slide,
china_but_on_the_moon,
buffalo_with_windy_hair,
not_missing_an_end_brace
"""¹
Now, there are several places you can put the end brace. You can (be a
massive fool and) put it after the last item:
"""
a_wonderful_set_of_things = {
...,
not_missing_an_end_brace}
"""
You can also (be a fool and) put it at the same *indentation*:
"""
a_wonderful_set_of_things = {
...,
not_missing_an_end_brace
}
"""
Or you can (be sane) and put it at no indentation:
"""
a_wonderful_set_of_things = {
...,
not_missing_an_end_brace
}
"""
Theoretically, there are more places you could put it (but we won't go
there... *shudder*).
The second of these is the one that PEP 8 was trying to explain. I
agree wording could be improved, but hey. You can file a bug report at
bugs.python.org if you care enough.
¹}
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
Re: A small question about PEP 8 Joshua Landau <joshua.landau.ws@gmail.com> - 2013-07-08 11:39 +0100
Re: A small question about PEP 8 Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-07-08 12:02 +0000
Re: A small question about PEP 8 Dave Angel <davea@davea.name> - 2013-07-08 08:33 -0400
Re: A small question about PEP 8 Joshua Landau <joshua.landau.ws@gmail.com> - 2013-07-08 14:07 +0100
csiph-web