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

Source Code for Package topo.projection

 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 8941 2008-08-21 13:40:59Z ceball $ 
11  """ 
12  __version__='$Revision: 8941 $' 
13   
14  # Automatically discover all .py files in this directory, and import classes from basic.py.  
15  import os,fnmatch 
16  from basic import * 
17  __all__ = basic.__all__ + [f.split('.py')[0] for f in os.listdir(__path__[0]) if fnmatch.fnmatch(f,'[!._]*.py')] 
18  del f,os,fnmatch 
19