[Zope3-checkins] CVS: Zope3/src/zope/app/services - registration.py:1.18

Fred Drake cvs-admin at zope.org
Thu Oct 30 16:55:16 EST 2003


Update of /cvs-repository/Zope3/src/zope/app/services
In directory cvs.zope.org:/tmp/cvs-serv28622

Modified Files:
	registration.py 
Log Message:
normalize whitespace


=== Zope3/src/zope/app/services/registration.py 1.17 => 1.18 ===
--- Zope3/src/zope/app/services/registration.py:1.17	Thu Oct 16 12:25:36 2003
+++ Zope3/src/zope/app/services/registration.py	Thu Oct 30 16:55:15 2003
@@ -294,13 +294,12 @@
     """
 
     implements(interfaces.IRegistration, IRemoveNotifiable,
-                      # We are including this here because we want all of the
-                      # subclasses to get it and we don't really need to be
-                      # flexible about the policy here. At least we don't
-                      # *think* we do. :)
-                      IAttributeAnnotatable,
-                      )
-
+               # We are including this here because we want all of the
+               # subclasses to get it and we don't really need to be
+               # flexible about the policy here. At least we don't
+               # *think* we do. :)
+               IAttributeAnnotatable,
+               )
 
     status = RegistrationStatusProperty()
 
@@ -464,7 +463,7 @@
     def queryRegistrations(self, name, default=None):
         """See INameRegistry"""
         return self._bindings.get(name, default)
-        
+
     def createRegistrationsFor(self, cfg):
         """See IRegistry"""
         return self.createRegistrations(cfg.name)
@@ -576,7 +575,7 @@
 
     def __setitem__(self, key, v):
         setitem(self, self.__setitem, key, v)
-        
+
     def __setitem(self, key, v):
         if key in self:
             raise DuplicationError(key)




More information about the Zope3-Checkins mailing list