[Zope-Checkins] CVS: Zope/lib/python/Interface - verify.py:1.3.208.1

Matt Behrens matt@zigg.com
Wed, 29 May 2002 15:45:51 -0400


Update of /cvs-repository/Zope/lib/python/Interface
In directory cvs.zope.org:/tmp/cvs-serv18366/lib/python/Interface

Modified Files:
      Tag: zigg_unix-install-control-config-branch
	verify.py 
Log Message:
Merge in HEAD (except setup.py... gotta chat about that one) :-)


=== Zope/lib/python/Interface/verify.py 1.3 => 1.3.208.1 ===
 from Exceptions import BrokenImplementation, DoesNotImplement, BrokenMethodImplementation
 from Method import Method
 import types
@@ -29,16 +28,9 @@
         elif type(attr) is types.MethodType:
             meth = Method().fromMethod(attr, n)
         else:
-            break # must be an attribute...
-        
+            continue # must be an attribute...
+
         if d.getSignatureInfo() != meth.getSignatureInfo():
                 raise BrokenMethodImplementation(n)
-            
-    return 1
-
-
-
-
-
-
 
+    return 1