[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/FieldIndex - FieldIndex.py:1.9
Jeremy Hylton
jeremy@zope.com
Thu, 20 Jun 2002 16:00:34 -0400
Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/FieldIndex
In directory cvs.zope.org:/tmp/cvs-serv20390
Modified Files:
FieldIndex.py
Log Message:
Remove unused imports
=== Zope/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py 1.8 => 1.9 ===
##############################################################################
-"""Simple column indices"""
+"""Simple column indices
-__version__='$Revision$'[11:-2]
-
-from zLOG import LOG, ERROR
-from types import StringType, ListType, IntType, TupleType
-
-from BTrees.OOBTree import OOBTree, OOSet
-from BTrees.IOBTree import IOBTree
-from BTrees.IIBTree import IITreeSet, IISet, union
-import BTrees.Length
+$Id$
+"""
from Products.PluginIndexes import PluggableIndex
from Products.PluginIndexes.common.UnIndex import UnIndex
from Globals import DTMLFile
-
-_marker = []
class FieldIndex(UnIndex):
"""Field Indexes"""