378f02bf9cd59fa2609ce3339be5885599ae1fac,mvpa/base/__init__.py,,,#,65

Before Change


// 4 -- computation/algorithm relevant thingies

// Lets check if environment can tell us smth
if environ.has_key("MVPA_VERBOSE"):
    verbose.level = int(environ["MVPA_VERBOSE"])


class WarningLog(OnceLogger):
    Logging class of messsages to be printed just once per each message

    

After Change


// 4 -- computation/algorithm relevant thingies

// Lets check if environment can tell us smth
if cfg.has_option("general", "verbose"):
    verbose.level = cfg.getint("general", "verbose")


class WarningLog(OnceLogger):
    Logging class of messsages to be printed just once per each message

    
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: PyMVPA/PyMVPA
Commit Name: 378f02bf9cd59fa2609ce3339be5885599ae1fac
Time: 2008-06-23
Author: michael.hanke@gmail.com
File Name: mvpa/base/__init__.py
Class Name:
Method Name:


Project Name: PyMVPA/PyMVPA
Commit Name: 378f02bf9cd59fa2609ce3339be5885599ae1fac
Time: 2008-06-23
Author: michael.hanke@gmail.com
File Name: mvpa/base/__init__.py
Class Name:
Method Name:


Project Name: Shmuma/ptan
Commit Name: a997c9720844894b9119be2d6ea8dd6fa057c143
Time: 2017-05-03
Author: maxl@fornova.net
File Name: samples/dqn_expreplay.py
Class Name:
Method Name: