[Checkins] SVN: zc.relationship/trunk/src/zc/relationship/index.py Simplify spelling.

Gary Poster gary at zope.com
Wed Jul 19 16:53:03 EDT 2006


Log message for revision 69213:
  Simplify spelling.
  

Changed:
  U   zc.relationship/trunk/src/zc/relationship/index.py

-=-
Modified: zc.relationship/trunk/src/zc/relationship/index.py
===================================================================
--- zc.relationship/trunk/src/zc/relationship/index.py	2006-07-19 20:22:55 UTC (rev 69212)
+++ zc.relationship/trunk/src/zc/relationship/index.py	2006-07-19 20:53:02 UTC (rev 69213)
@@ -80,14 +80,13 @@
 # the relationship index
 
 def getModuleTools(module):
-    res = {}
+    res = {'multiunion': None}
     for nm in dir(module):
         if not nm.startswith('_') and not nm.endswith('Iterator'):
             if re.match('[A-Z][A-Z]', nm):
                 res[nm[2:]] = getattr(module, nm)
             else:
                 res[nm] = getattr(module, nm)
-    res.setdefault('multiunion', None)
     return res
 
 class Index(persistent.Persistent, zope.app.container.contained.Contained):



More information about the Checkins mailing list