[Zope-Checkins] CVS: Zope3/lib/python/Interface - Verify.py:1.5

Jim Fulton jim@zope.com
Mon, 11 Nov 2002 13:23:50 -0500


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

Modified Files:
	Verify.py 
Log Message:
Fixe bug in Verify: base interfaces were not checked

=== Zope3/lib/python/Interface/Verify.py 1.4 => 1.5 ===
--- Zope3/lib/python/Interface/Verify.py:1.4	Thu Oct 10 17:21:20 2002
+++ Zope3/lib/python/Interface/Verify.py	Mon Nov 11 13:23:49 2002
@@ -42,7 +42,7 @@
     if not tentative and not tester( candidate ):
         raise DoesNotImplement(iface)
 
-    for n, d in iface.namesAndDescriptions():
+    for n, d in iface.namesAndDescriptions(1):
         if not hasattr(candidate, n):
             raise BrokenImplementation(iface, n)