Changes between Version 48 and Version 49 of DeveloperGuidelines/CodeConventions
- Timestamp:
- 08/14/14 09:10:49 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/CodeConventions
v48 v49 30 30 - for string constants in '''Python''' use '''double-quotes''' {{{" "}}} - UNLESS the string contains " 31 31 - for string constants in '''!JavaScript''' use '''single-quotes''' {{{' '}}} - UNLESS the string contains a ' 32 - for attributes in ''' !HTML''' use use '''double-quotes''' {{{" "}}}32 - for attributes in '''HTML''' use use '''single-quotes''' {{{' '}}} 33 33 34 34 - for triple-quoted strings (such as '''Docstrings''' or Inline-XML) use {{{""" """}}} with '''double-quotes''', except: