Changes between Version 7 and Version 8 of DevNotes/DevGuide/CodingRules
- Timestamp:
- May 30, 2016 7:27:21 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevNotes/DevGuide/CodingRules
v7 v8 70 70 71 71 * 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 }}} 74 80 not 75 import sasmodels, sascalc 81 {{{ 82 #!div style="font-size: 80%" 83 Code highlighting: 84 {{{#!python 85 import sasmodels, sascalc 86 }}} 87 }}} 76 88 * It is OK to import multiple classes and/or methods from the same module on the same line: 77 89 from sasmodels import barbell, cylinder