Home | Trees | Indices | Help |
|
---|
|
1 #emacs: -*- mode: python-mode; py-indent-offset: 4; indent-tabs-mode: nil -*- 2 #ex: set 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 """Base functionality of PyMVPA 10 11 Module Organization 12 =================== 13 14 mvpa.base module contains various modules which are used through out 15 PyMVPA code, and are generic building blocks 16 17 .. packagetree:: 18 :style: UML 19 20 :group Basic: externals 21 """ 22 23 __docformat__ = 'restructuredtext' 24 25 26 if __debug__: 27 from mvpa.misc import debug 28 debug('INIT', 'mvpa.base') 29 30 import externals 31 32 if __debug__: 33 debug('INIT', 'mvpa.base end') 34
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Sun Jun 1 19:02:00 2008 | http://epydoc.sourceforge.net |