Changes between Version 10 and Version 11 of DevNotes/DevGuide/CodingRules


Ignore:
Timestamp:
May 30, 2016 7:37:54 AM (8 years ago)
Author:
wojciech
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/DevGuide/CodingRules

    v10 v11  
    8585      }}} 
    8686    * It is OK to import multiple classes and/or methods from the same module on the same line: 
    87        from sasmodels import barbell, cylinder 
     87      {{{ 
     88      #!div style="font-size: 80%" 
     89      {{{#!python       
     90      from sasmodels import barbell, cylinder 
     91      }}} 
     92      }}} 
    8893    * Avoid importing * from any module. This is a typically a waste of time and memory. 
    8994