[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/FieldIndex - FieldIndex.py:1.7
Andreas Jung
andreas@digicool.com
Wed, 24 Apr 2002 11:42:46 -0400
Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/FieldIndex
In directory cvs.zope.org:/tmp/cvs-serv6801/FieldIndex
Modified Files:
FieldIndex.py
Log Message:
Interface cleanup:
Pluggable indexes no longer subclass PluggableIndex.PluggableIndex.
Instead PluggableIndex.py only contains the interface description.
=== Zope/lib/python/Products/PluginIndexes/FieldIndex/FieldIndex.py 1.6 => 1.7 ===
_marker = []
-class FieldIndex(UnIndex,PluggableIndex.PluggableIndex, Persistent,
- Implicit, SimpleItem):
+class FieldIndex(UnIndex, Persistent, Implicit, SimpleItem):
"""Field Indexes"""
__implements__ = (PluggableIndex.PluggableIndexInterface,)