Changes between Version 7 and Version 8 of CodingStandards
- Timestamp:
- 2009-11-21T04:18:43Z (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingStandards
v7 v8 13 13 * Put parenthesis around tuples if it helps make the code more readable, leave them off if not. 14 14 15 === comments, idioms, miscellany, license ===15 === comments, idioms, miscellany, license, imports === 16 16 17 17 Here is a useful header for starting new Python files: … … 33 33 # your code here 34 34 }}} 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. 35 37 36 38 === truths and falsehoods ===