[Python-Dev] PEP 8 modernisation

Alexander Belopolsky alexander.belopolsky at gmail.com
Sun Aug 4 03:30:51 CEST 2013


On Thu, Aug 1, 2013 at 8:44 AM, Nick Coghlan <ncoghlan at gmail.com> wrote:
>
> 9. Explicit guideline not to assign lambdas to names (use def, that's
> what it's for)


Would you consider changing the formatting in the recommended example from

def f(x): return 2*x

to

def f(x):
    return 2*x

?

What is the modern view on single-line def? The "Other Recommendations"
section allows but discourages single-line if/for/while, but is silent
about def.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-dev/attachments/20130803/c12c549f/attachment.html>


More information about the Python-Dev mailing list