Changes between Version 16 and Version 17 of DeveloperGuidelines/CodeConventions
- Timestamp:
- 03/20/11 20:58:04 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/CodeConventions
v16 v17 11 11 * Limit line length to 80 characters 12 12 * Use " " for strings, UNLESS the string contains a ", in which case use ' 13 13 * All functions should include Docstrings like: 14 {{{ 15 """ 16 This function is just an example 17 @param: None 18 """ 19 }}} 14 20 === PEP8 Script === 15 21 Use static/scripts/tools/pep8.py to check for PEP8 compliance.