Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
partially reverted r30994 to avoid infinite import loops
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Jul 5, 2005
1 parent 48576cb commit b6843fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions ZCTextIndex.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
PluggableIndexInterface
from Products.PluginIndexes.common.util import parseIndexRequest
from Products.PluginIndexes.common import safe_callable
from Products.PluginIndexes.interfaces import IPluggableIndex

from Products.ZCTextIndex.ILexicon import ILexicon
from Products.ZCTextIndex.Lexicon import \
Expand All @@ -55,7 +54,7 @@ class ZCTextIndex(Persistent, Acquisition.Implicit, SimpleItem):
"""

__implements__ = PluggableIndexInterface
implements(IZCTextIndex, IPluggableIndex)
implements(IZCTextIndex)

## Magic class attributes ##

Expand Down
2 changes: 1 addition & 1 deletion tests/testZCTextIndex.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def test_z3interfaces(self):
from Products.ZCTextIndex.interfaces import IZCTextIndex
from zope.interface.verify import verifyClass

verifyClass(IPluggableIndex, ZCTextIndex)
verifyClass(IPluggableIndex, ZCTextIndex, 1)
verifyClass(IZCTextIndex, ZCTextIndex)

def testRanking(self):
Expand Down

0 comments on commit b6843fa

Please sign in to comment.