Changes between Version 7 and Version 8 of CodingStandards


Ignore:
Timestamp:
2009-11-21T04:18:43Z (15 years ago)
Author:
zooko
Comment:

explicitly override a rule of PEP-8

Legend:

Unmodified
Added
Removed
Modified
  • CodingStandards

    v7 v8  
    1313 * Put parenthesis around tuples if it helps make the code more readable, leave them off if not.
    1414
    15 === comments, idioms, miscellany, license ===
     15=== comments, idioms, miscellany, license, imports ===
    1616
    1717Here is a useful header for starting new Python files:
     
    3333# your code here
    3434}}}
     35
     36 * Feel free to ignore the part of PEP-8 that says to put each module import on a separate line, but don't import modules from multiple separate packages on the same line.
    3537
    3638=== truths and falsehoods ===