Changes between Version 25 and Version 26 of CodingStandards


Ignore:
Timestamp:
2013-12-19T01:27:59Z (10 years ago)
Author:
daira
Comment:

Do not include a per-file copyright header

Legend:

Unmodified
Added
Removed
Modified
  • CodingStandards

    v25 v26  
    1818
    1919{{{
    20 # Copyright (c) 2011 The Tahoe-LAFS Software Foundation
    21 # This file is part of Tahoe-LAFS; see doc/about.html for licensing terms.
    22 
    2320"""
    24 doc string describing the module here
     21optional doc string describing the module here
    2522"""
    2623
     
    3431}}}
    3532
     33 * Do not include a per-file copyright header (they just get out of date and are redundant with [source:README.txt]).
    3634 * Put two blank lines between classes.
    3735 * Put one blank line before a block comment if the preceding line is code at the same indent level (this makes it harder to mistake the code as part of the comment, and makes the comment easier to read).