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 ezio.melotti
Recipients docs@python, ezio.melotti, pwuertz, rhettinger, serhiy.storchaka
Date 2012-10-25.18:11:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1351188701.88.0.806836625841.issue16239@psf.upfronthosting.co.za>
In-reply-to
Content
As I see it:
For  c = (a + b) * (a - b)  the hint (and the actual priority) is given by the (), the spaces around the +/- are not necessary but don't affect readability.
For  c = (a+b) * (a-b)  the hints are given both by the () and the spacing, the lack of spaces around the +/- is not necessary but doesn't affect readability.
For  c = a+b * a-b  the hints are given both by the spacing and they are wrong.
History
Date User Action Args
2012-10-25 18:11:41ezio.melottisetrecipients: + ezio.melotti, rhettinger, docs@python, serhiy.storchaka, pwuertz
2012-10-25 18:11:41ezio.melottisetmessageid: <1351188701.88.0.806836625841.issue16239@psf.upfronthosting.co.za>
2012-10-25 18:11:41ezio.melottilinkissue16239 messages
2012-10-25 18:11:41ezio.melotticreate