Commit 49129429 authored by Jim Fulton's avatar Jim Fulton

Changed to use regular old BTree.

parent c615d7b8
...@@ -10,10 +10,10 @@ ...@@ -10,10 +10,10 @@
__doc__='''Simple column indexes __doc__='''Simple column indexes
$Id: Index.py,v 1.2 1997/09/08 18:53:24 jim Exp $''' $Id: Index.py,v 1.3 1997/09/10 17:25:26 jim Exp $'''
__version__='$Revision: 1.2 $'[11:-2] __version__='$Revision: 1.3 $'[11:-2]
from OITree import BTree from BTree import BTree
from intSet import intSet from intSet import intSet
import operator import operator
...@@ -140,6 +140,9 @@ class Index: ...@@ -140,6 +140,9 @@ class Index:
############################################################################## ##############################################################################
# #
# $Log: Index.py,v $ # $Log: Index.py,v $
# Revision 1.3 1997/09/10 17:25:26 jim
# Changed to use regular old BTree.
#
# Revision 1.2 1997/09/08 18:53:24 jim # Revision 1.2 1997/09/08 18:53:24 jim
# *** empty log message *** # *** empty log message ***
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment