[Zope3-checkins] SVN: Zope3/trunk/src/zope/interface/verify.py Removed trailing whitespaces

Dmitry Vasiliev dima at hlabs.spb.ru
Tue Jul 26 02:24:16 EDT 2005


Log message for revision 37426:
  Removed trailing whitespaces
  

Changed:
  U   Zope3/trunk/src/zope/interface/verify.py

-=-
Modified: Zope3/trunk/src/zope/interface/verify.py
===================================================================
--- Zope3/trunk/src/zope/interface/verify.py	2005-07-26 01:28:09 UTC (rev 37425)
+++ Zope3/trunk/src/zope/interface/verify.py	2005-07-26 06:24:15 UTC (rev 37426)
@@ -57,14 +57,14 @@
                 # We can't verify non-methods on classes, since the
                 # class may provide attrs in it's __init__.
                 continue
-            
+
             raise BrokenImplementation(iface, name)
 
         attr = getattr(candidate, name)
         if not isinstance(desc, Method):
             # If it's not a method, there's nothing else we can test
             continue
-        
+
         if isinstance(attr, FunctionType):
             # should never get here, since classes should not provide functions
             meth = fromFunction(attr, iface, name=name)



More information about the Zope3-Checkins mailing list