Changes between Version 8 and Version 9 of DevNotes/DevGuide/CodingRules
- Timestamp:
- May 30, 2016 7:28:45 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevNotes/DevGuide/CodingRules
v8 v9 72 72 {{{ 73 73 #!div style="font-size: 80%" 74 Code highlighting:75 {{{#!python76 import sascalc77 import sasmodels78 79 }}} 74 {{{#!python 75 import sascalc 76 import sasmodels 77 }}} 78 }}} 79 80 80 not 81 81 82 {{{ 82 83 #!div style="font-size: 80%" 83 Code highlighting: 84 {{{#!python 85 import sasmodels, sascalc 86 }}} 84 {{{#!python 85 import sasmodels, sascalc 86 }}} 87 87 }}} 88 88 * It is OK to import multiple classes and/or methods from the same module on the same line: