Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #50139
| Date | 2013-07-08 07:32 +0800 |
|---|---|
| Subject | A small question about PEP 8 |
| From | Xue Fuqiao <xfq.free@gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.4377.1373275365.3114.python-list@python.org> (permalink) |
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? -- Best regards, Xue Fuqiao.
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
A small question about PEP 8 Xue Fuqiao <xfq.free@gmail.com> - 2013-07-08 07:32 +0800 Re: A small question about PEP 8 Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-07-08 11:46 +0000
csiph-web