| Home | Trees | Indices | Help |
|
|---|
|
|
1 """
2 Sheet classes.
3
4 A Sheet is a two-dimensional arrangement of processing units,
5 typically modeling a neural region or a subset of cells in a neural
6 region. Any new Sheet classes added to this directory will
7 automatically become available for any model.
8
9 $Id: __init__.py 1300 2005-11-07 12:22:04Z julienciroux $
10 """
11 __version__='$Revision: 1300 $'
12
13 # Automatically discover all .py files in this directory.
14 import re,os
15 __all__ = [re.sub('\.py$','',f) for f in os.listdir(__path__[0])
16 if re.match('^[^_].*\.py$',f)]
17
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0beta1 on Thu Feb 21 15:25:20 2008 | http://epydoc.sourceforge.net |