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

Martijn Pieters mj@zope.com
Mon, 11 Nov 2002 14:53:16 -0500


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

Modified Files:
	Verify.py 
Log Message:
Backport Interface Verify bugfix from Zope 3.


=== Zope/lib/python/Interface/Verify.py 1.3 => 1.4 ===
--- Zope/lib/python/Interface/Verify.py:1.3	Wed Aug 14 17:35:32 2002
+++ Zope/lib/python/Interface/Verify.py	Mon Nov 11 14:53:16 2002
@@ -44,7 +44,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)