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

Source Code for Package topo.projections

 1  """ 
 2  Projection classes. 
 3   
 4  A Projection is a connection between two Sheets, generally implemented 
 5  as a large set of ConnectionFields. 
 6   
 7  Any new Projection classes added to this directory will automatically 
 8  become available for any model. 
 9   
10  $Id: __init__.py 3956 2006-06-21 21:00:15Z jbednar $ 
11  """ 
12  __version__='$Revision: 3956 $' 
13   
14  # Automatically discover all .py files in this directory.  
15  import re,os 
16  __all__ = [re.sub('\.py$','',f) for f in os.listdir(__path__[0]) 
17             if re.match('^[^_].*\.py$',f)] 
18