[Zodb-checkins] CVS: ZODB3/ZODB - DemoStorage.py:1.18.12.2

Jeremy Hylton jeremy at zope.com
Thu Jul 3 18:47:40 EDT 2003


Update of /cvs-repository/ZODB3/ZODB
In directory cvs.zope.org:/tmp/cvs-serv25139/ZODB

Modified Files:
      Tag: zodb33-devel-branch
	DemoStorage.py 
Log Message:
Temporarily use a dict instead of a BTree.


=== ZODB3/ZODB/DemoStorage.py 1.18.12.1 => 1.18.12.2 ===
--- ZODB3/ZODB/DemoStorage.py:1.18.12.1	Tue Jul  1 15:34:10 2003
+++ ZODB3/ZODB/DemoStorage.py	Thu Jul  3 17:47:33 2003
@@ -93,7 +93,8 @@
         BaseStorage.BaseStorage.__init__(self, name, base)
 
         # We use a BTree because the items are sorted!
-        self._data=OOBTree.OOBTree()
+##        self._data=OOBTree.OOBTree()
+        self._data = {}
         self._index={}
         self._vindex={}
         self._base=base




More information about the Zodb-checkins mailing list