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 pauljurczak
Recipients docs@python, pauljurczak
Date 2013-05-13.04:08:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1368418116.32.0.199767602115.issue17966@psf.upfronthosting.co.za>
In-reply-to
Content
This may be too subjective, but here it goes:

PEP 8 discourages vertical alignment: "More than one space around an assignment (or other) operator to align it with another", but contrary to this rule, vertical alignment is used many times in the same paragraph, e.g.:
Yes: spam(1)
No:  spam (1)
If vertical alignment is so evil, the above should be changed to:
Yes: spam(1)
No: spam (1)

Disclosure: I use vertical alignment in my code quite often.

http://www.python.org/dev/peps/pep-0008/
History
Date User Action Args
2013-05-13 04:08:36pauljurczaksetrecipients: + pauljurczak, docs@python
2013-05-13 04:08:36pauljurczaksetmessageid: <1368418116.32.0.199767602115.issue17966@psf.upfronthosting.co.za>
2013-05-13 04:08:36pauljurczaklinkissue17966 messages
2013-05-13 04:08:35pauljurczakcreate