Guido suggests alternative language for whitespace around operators.

This commit is contained in:
Barry Warsaw 2012-04-19 13:42:24 -04:00
parent cefcfb8196
commit 5ca34439af
1 changed files with 5 additions and 1 deletions

View File

@ -305,7 +305,11 @@ Other Recommendations
``>=``, ``in``, ``not in``, ``is``, ``is not``), Booleans (``and``,
``or``, ``not``).
- Use spaces around arithmetic operators:
- If operators with different priorities are used, consider adding
whitespace around the operators with the lowest priority(ies). Use
your own judgement; however, never use more than one space, and
always have the same amount of whitespace on both sides of a binary
operator.
Yes::