Changes between Version 7 and Version 8 of DevNotes/DevGuide/CodingRules


Ignore:
Timestamp:
May 30, 2016 5:27:21 AM (8 years ago)
Author:
wojciech
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/DevGuide/CodingRules

    v7 v8  
    7070 
    7171    * Import only one module per line: 
    72        import sascalc 
    73        import sasmodels 
     72       {{{ 
     73       #!div style="font-size: 80%" 
     74       Code highlighting: 
     75          {{{#!python 
     76          import sascalc 
     77          import sasmodels 
     78          }}} 
     79       }}} 
    7480       not 
    75        import sasmodels, sascalc 
     81       {{{ 
     82       #!div style="font-size: 80%" 
     83       Code highlighting: 
     84          {{{#!python 
     85          import sasmodels, sascalc 
     86          }}} 
     87       }}} 
    7688    * It is OK to import multiple classes and/or methods from the same module on the same line: 
    7789       from sasmodels import barbell, cylinder