Package mvpa :: Package support
[hide private]
[frames] | no frames]

Source Code for Package mvpa.support

 1  # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- 
 2  # vi: set ft=python sts=4 ts=4 sw=4 et: 
 3  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 4  # 
 5  #   See COPYING file distributed along with the PyMVPA package for the 
 6  #   copyright and license terms. 
 7  # 
 8  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 9  """Import helper for PyMVPA support modules 
10   
11  mvpa.support is destined to contain temporary "fixes" to external modules 
12  (Python, scipy), which are known to be fixed in the recent releases but are not 
13  present in comodity distributions. 
14   
15  Example could be copy module.""" 
16   
17  __docformat__ = 'restructuredtext' 
18   
19  if __debug__: 
20      from mvpa.base import debug 
21      debug('INIT', 'mvpa.support start') 
22      debug('INIT', 'mvpa.support end') 
23