Changes between Version 10 and Version 11 of CodingStandards
- Timestamp:
- 2009-11-21T05:58:10Z (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingStandards
v10 v11 11 11 12 12 * Use {{{underscore_separated_names}}} for functions, {{{CamelCapNames}}} for classes, {{{alllowercasenames}}} for modules, and {{{ALL_CAPS_NAMES}}} for constants. Use all lower-case variable names (e.g. {{{variable_name}}} or {{{variablename}}}). Prepend a leading underscore to private names. 13 * Put parenthes is around tuples if it helps make the code more readable, leave them off if not.13 * Put parentheses around tuples if it helps make the code more readable, leave them off if not. 14 14 15 15 === comments, idioms, miscellany, license, imports, docstrings, line widths ===