[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/KeywordIndex - KeywordIndex.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/KeywordIndex
In directory cvs.zope.org:/tmp/cvs-serv6801/KeywordIndex
Modified Files:
KeywordIndex.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/KeywordIndex/KeywordIndex.py 1.6 => 1.7 ===
_marker = []
-class KeywordIndex(UnIndex,PluggableIndex.PluggableIndex,Persistent,
- Implicit,SimpleItem):
+class KeywordIndex(UnIndex,Persistent, Implicit,SimpleItem):
__implements__ = (PluggableIndex.PluggableIndexInterface,)