[Zope3-checkins] CVS: ZODB4/Interface - Verify.py:1.6
Jeremy Hylton
jeremy@zope.com
Fri, 13 Dec 2002 17:09:10 -0500
Update of /cvs-repository/ZODB4/Interface
In directory cvs.zope.org:/tmp/cvs-serv27468/Interface
Modified Files:
Verify.py
Log Message:
Test string using == not is.
=== ZODB4/Interface/Verify.py 1.5 => 1.6 ===
--- ZODB4/Interface/Verify.py:1.5 Mon Nov 11 13:23:49 2002
+++ ZODB4/Interface/Verify.py Fri Dec 13 17:09:10 2002
@@ -34,7 +34,7 @@
If optional tentative is true, suppress the "is implemented by" test.
"""
- if vtype is 'c':
+ if vtype == 'c':
tester = iface.isImplementedByInstancesOf
else:
tester = iface.isImplementedBy