Changes between Version 10 and Version 11 of DevNotes/DevGuide/CodingRules
- Timestamp:
- May 30, 2016 7:37:54 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevNotes/DevGuide/CodingRules
v10 v11 85 85 }}} 86 86 * 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 }}} 88 93 * Avoid importing * from any module. This is a typically a waste of time and memory. 89 94