Changes between Version 8 and Version 9 of CodingStandards
- Timestamp:
- 2009-11-21T04:24:32Z (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingStandards
v8 v9 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, imports ===15 === comments, idioms, miscellany, license, imports, docstrings === 16 16 17 17 Here is a useful header for starting new Python files: … … 35 35 36 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. 37 * Ignore the part of PEP-257 which says to put the trailing {{{{"""}}} of a multi-line docstring on a separate line separated by a blank line. (That rule appears to have been motivated by a limitation of Emacs which has been fixed.) 37 38 38 39 === truths and falsehoods ===