[Zodb-checkins] CVS: Zope/lib/python/BTrees -
Interfaces.py:1.18.92.2
Jim Fulton
cvs-admin at zope.org
Sat Nov 15 07:11:14 EST 2003
Update of /cvs-repository/Zope/lib/python/BTrees
In directory cvs.zope.org:/tmp/cvs-serv23407/lib/python/BTrees
Modified Files:
Tag: zodb33-devel-branch
Interfaces.py
Log Message:
Disabled some interface assertions that don;t work with new-style
built-in types. It will be possible to make these assertions with Zope
3 interfaces.
=== Zope/lib/python/BTrees/Interfaces.py 1.18.92.1 => 1.18.92.2 ===
--- Zope/lib/python/BTrees/Interfaces.py:1.18.92.1 Tue Jul 1 18:04:14 2003
+++ Zope/lib/python/BTrees/Interfaces.py Sat Nov 15 07:11:06 2003
@@ -391,7 +391,10 @@
#
################################################################
-OOBTree.OOSet.__implements__=ISet
-OOBTree.OOTreeSet.__implements__=ITreeSet
-OOBTree.OOBucket.__implements__=IDictionaryIsh
-OOBTree.OOBTree.__implements__=IBTree
+# XXX Need to use the new declaration syntax once it is available
+# for Zope 2.
+
+## OOBTree.OOSet.__implements__=ISet
+## OOBTree.OOTreeSet.__implements__=ITreeSet
+## OOBTree.OOBucket.__implements__=IDictionaryIsh
+## OOBTree.OOBTree.__implements__=IBTree
More information about the Zodb-checkins
mailing list