Package topo :: Package sheets
[hide private]
[frames] | no frames]

Source Code for Package topo.sheets

 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