[Zope3-checkins] CVS: Zope3/src/zope/index/field - index.py:1.5

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


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

Modified Files:
	index.py 
Log Message:


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


=== Zope3/src/zope/index/field/index.py 1.4 => 1.5 ===
--- Zope3/src/zope/index/field/index.py:1.4	Fri Feb 20 11:57:35 2004
+++ Zope3/src/zope/index/field/index.py	Fri Feb 20 17:02:33 2004
@@ -16,10 +16,10 @@
 
 from persistent import Persistent
 
-from zodb.btrees.IOBTree import IOBTree
-from zodb.btrees.OOBTree import OOBTree
-from zodb.btrees.IIBTree import IITreeSet, IISet, union
-from zodb.btrees.Length import Length
+from BTrees.IOBTree import IOBTree
+from BTrees.OOBTree import OOBTree
+from BTrees.IIBTree import IITreeSet, IISet, union
+from BTrees.Length import Length
 
 from types import ListType, TupleType
 from zope.interface import implements




More information about the Zope3-Checkins mailing list