This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author methane
Recipients IanLee1521, Rosuav, berker.peksag, gvanrossum, methane
Date 2016-04-15.13:52:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460728359.57.0.0268087085261.issue26763@psf.upfronthosting.co.za>
In-reply-to
Content
How about recommend using parentheses to avoid different level operators have same indent level?

ok:
            if (width == 0
                and height == 0
                and color == 'red'
                and emphasis == 'strong'
                or highlight > 100
            ):
                ...

better:
            if ((width == 0
                 and height == 0
                 and color == 'red'
                 and emphasis == 'strong')
                or highlight > 100
            ):
History
Date User Action Args
2016-04-15 13:52:39methanesetrecipients: + methane, gvanrossum, Rosuav, berker.peksag, IanLee1521
2016-04-15 13:52:39methanesetmessageid: <1460728359.57.0.0268087085261.issue26763@psf.upfronthosting.co.za>
2016-04-15 13:52:39methanelinkissue26763 messages
2016-04-15 13:52:39methanecreate