Recent Changes - Search:


Coding style

  • Use 4 spaces to indent python code.
  • Think before you code. Doing it right the first time saves lots of time later.

Import

 from modulename import Class1, function_something

instead of

 import modulename
 obj = modulename.Class1

if we just need a few classes or functions from a module.

Tips

Read the output of tla changes --diffs before committing or submitting a patch.

Edit - History - Print - Recent Changes - Search
Page last modified on January 26, 2007, at 11:31 AM