Changes between Version 32 and Version 33 of DeveloperGuidelines/CodeConventions
- Timestamp:
- 11/16/13 22:55:59 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/CodeConventions
v32 v33 25 25 26 26 - for string constants in Python use double quotes " " - UNLESS the string contains " 27 - for string constants in JavaScript use single quotes ' ' - UNLESS the string contains a '27 - for string constants in !JavaScript use single quotes ' ' - UNLESS the string contains a ' 28 28 29 - for Inline- JavaScript or JSON inside Python code use ''' '''29 - for Inline-!JavaScript or JSON inside Python code use ''' ''' 30 30 - in all other cases of triple-quoted strings (such as docstrings or Inline-XML) use """ """ 31 31