[Zope3-checkins] CVS: Zope3/src/zope/index/keyword - index.py:1.7

Fred L. Drake, Jr. fred at zope.com
Fri Feb 20 17:03:06 EST 2004


Update of /cvs-repository/Zope3/src/zope/index/keyword
In directory cvs.zope.org:/tmp/cvs-serv15099/src/zope/index/keyword

Modified Files:
	index.py 
Log Message:


remove use of the ZODB 4 "zodb" facade package; use ZODB 3 directly


=== Zope3/src/zope/index/keyword/index.py 1.6 => 1.7 ===
--- Zope3/src/zope/index/keyword/index.py:1.6	Fri Feb 20 11:57:35 2004
+++ Zope3/src/zope/index/keyword/index.py	Fri Feb 20 17:02:34 2004
@@ -16,10 +16,10 @@
 
 from persistent import Persistent
 
-from zodb.btrees.IOBTree import IOBTree
-from zodb.btrees.OOBTree import OOBTree, OOSet, difference 
-from zodb.btrees.IIBTree import IISet, union, intersection
-from zodb.btrees.Length import Length
+from BTrees.IOBTree import IOBTree
+from BTrees.OOBTree import OOBTree, OOSet, difference 
+from BTrees.IIBTree import IISet, union, intersection
+from BTrees.Length import Length
 
 from types import ListType, TupleType, StringTypes
 from zope.index.interfaces import IInjection, IKeywordQuerying, IStatistics




More information about the Zope3-Checkins mailing list