Edgewall Software

Changes between Version 4 and Version 5 of TracDev/CodingStyle


Ignore:
Timestamp:
Jan 16, 2006, 3:08:12 PM (18 years ago)
Author:
Christopher Lenz
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/CodingStyle

    v4 v5  
    1414== Miscellaneous ==
    1515 * Lines shouldn't exceed a length of 80 characters.
    16  * Use list comprehension instead of the built-in functions {{{filter()}}} and {{{map()}}}.
     16 * Prefer list comprehension to the built-in functions {{{filter()}}} and {{{map()}}} when appropriate.
    1717
    1818----