[Zope-Checkins] CVS: Zope/lib/python/Interface - Verify.py:1.3.6.1
Martijn Pieters
mj@zope.com
Mon, 11 Nov 2002 14:55:33 -0500
Update of /cvs-repository/Zope/lib/python/Interface
In directory cvs.zope.org:/tmp/cvs-serv12704/lib/python/Interface
Modified Files:
Tag: Zope-2_6-branch
Verify.py
Log Message:
Backported Zope 3 fix for Interface Verify bug.
=== Zope/lib/python/Interface/Verify.py 1.3 => 1.3.6.1 ===
--- 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:55:32 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)