Changes between Version 17 and Version 18 of DevNotes/DevGuide/CodingRules


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

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/DevGuide/CodingRules

    v17 v18  
    110110      }}} 
    111111      }}} 
    112     * Avoid importing * from any module. This is a typically a waste of time and memory. 
     112    * Avoid importing * from any module. This is a typically a waste of time and memory. This leads to bugs as well when for example you have "from math import *" and "from numpy import *" in the same file and then decide to reorder them.  It also makes for harder to understand code since you don't know where the symbols are coming from. 
    113113 
    114114    * Imports should be grouped in the following order: