Edgewall Software

Changes between Version 26 and Version 27 of TracDev/CodingStyle


Ignore:
Timestamp:
Mar 28, 2015, 11:16:58 PM (9 years ago)
Author:
Ryan J Ollos
Comment:

I've been bitten by this issue one too many times.

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/CodingStyle

    v26 v27  
    4949 * Prefer tuples without parenthesis, particularly in `return` and `yield` statements. When parenthesis are needed for line continuation they can be used rather than a backslash on the continuation line.
    5050 * Code blocks are copiously documented, describing the code blocks' functionality concisely.
     51 * Avoid using `except Exception`, instead making the exception clause as narrow as necessary to catch the excepted exception.
    5152
    5253== JavaScript