[Python-Dev] PEP 8 updated on whether to break before or after a binary update

Serhiy Storchaka storchaka at gmail.com
Fri Apr 15 13:24:12 EDT 2016


On 15.04.16 20:03, Victor Stinner wrote:
> Hum.
>
>          if (width == 0
>              and height == 0
>              and color == 'red'
>              and emphasis == 'strong'
>              or highlight > 100):
>              raise ValueError("sorry, you lose")
>
> Please remove one space to vertically align "and" operators with the
> opening parenthesis:
>
>          if (width == 0
>             and height == 0
>             and color == 'red'
>             and emphasis == 'strong'
>             or highlight > 100):
>              raise ValueError("sorry, you lose")

I would rather *add* spaces to wrapped condition lines.

         if (width == 0
                 and height == 0
                 and color == 'red'
                 and emphasis == 'strong'
                 or highlight > 100):
             raise ValueError("sorry, you lose")




More information about the Python-Dev mailing list