Changes between Version 16 and Version 17 of DeveloperGuidelines/CodeConventions


Ignore:
Timestamp:
03/20/11 20:58:04 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/CodeConventions

    v16 v17  
    1111  * Limit line length to 80 characters
    1212 * 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}}}
    1420=== PEP8 Script ===
    1521Use static/scripts/tools/pep8.py to check for PEP8 compliance.