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 tlynn
Recipients docs@python, tlynn
Date 2013-11-12.13:55:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1384264524.56.0.301176530071.issue19560@psf.upfronthosting.co.za>
In-reply-to
Content
FWIW, this pair of examples differs from the others in this section
as they were both explicitly okayed in the first version of PEP 8
<http://hg.python.org/peps/rev/4c31c25bdc03?revcount=120>::

    - Use your better judgment for the insertion of spaces around
      arithmetic operators.  Always be consistent about whitespace on
      either side of a binary operator.  Some examples:

          i = i+1
          submitted = submitted + 1
          x = x*2 - 1
          hypot2 = x*x + y*y
          c = (a+b) * (a-b)
          c = (a + b) * (a - b)

My guess is that this is still the intention?
History
Date User Action Args
2013-11-12 13:55:24tlynnsetrecipients: + tlynn, docs@python
2013-11-12 13:55:24tlynnsetmessageid: <1384264524.56.0.301176530071.issue19560@psf.upfronthosting.co.za>
2013-11-12 13:55:24tlynnlinkissue19560 messages
2013-11-12 13:55:24tlynncreate