Changes between Version 9 and Version 10 of SystemDevelopmentEN


Ignore:
Timestamp:
Jul 27, 2012, 5:01:36 PM (12 years ago)
Author:
Martin Kolman
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SystemDevelopmentEN

    v9 v10  
    113113==== mod_ ====
    114114
     115== Coding style ==
     116Class and variable names are in !CammelCase.
     117
     1182 whitespace indentation.
     119
     120Other than that, [http://www.python.org/dev/peps/pep-0008/ PEP8]
     121
     122=== Modules ===
     123All class variables should be declared in the ''init'' method, the ''firstTime()'' (if implemented) should be near the top.
    115124
    116125== Porting ==