[Zope3-checkins] CVS: Zope3/src/zope/app/index/text - index.py:1.9 processors.py:1.6 queries.py:1.3
Martijn Faassen
m.faassen@vet.uu.nl
Thu, 1 May 2003 15:36:21 -0400
Update of /cvs-repository/Zope3/src/zope/app/index/text
In directory cvs.zope.org:/tmp/cvs-serv30407/zope/app/index/text
Modified Files:
index.py processors.py queries.py
Log Message:
Importgeddon part the second. Removed unused imports throughout the
source tree. This should have taken care of most unused imports
in Zope 3. :)
=== Zope3/src/zope/app/index/text/index.py 1.8 => 1.9 ===
--- Zope3/src/zope/app/index/text/index.py:1.8 Fri Mar 21 10:29:08 2003
+++ Zope3/src/zope/app/index/text/index.py Thu May 1 15:35:20 2003
@@ -25,10 +25,8 @@
from zope.app.services.servicenames import HubIds
from zope.proxy.context import ContextMethod
from zope.app.interfaces.event import ISubscriber
-from zope.exceptions import NotFoundError
from zope.textindex.textindexwrapper import TextIndexWrapper
-from zope.app.interfaces.dublincore import IZopeDublinCore
from zope.app.interfaces.services.hub import \
IRegistrationHubEvent, \
IObjectRegisteredHubEvent, \
=== Zope3/src/zope/app/index/text/processors.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/index/text/processors.py:1.5 Tue Feb 11 10:59:46 2003
+++ Zope3/src/zope/app/index/text/processors.py Thu May 1 15:35:20 2003
@@ -23,7 +23,6 @@
from zope.app.interfaces.index.interfaces import IRankedHubIdList
from zope.app.interfaces.index.interfaces import IBatchedTextIndexQuery
from zope.app.interfaces.services.query import IQueryProcessor
-from zope.app.index.text.queries import BatchedTextIndexQuery
from zope.app.index.queries import BatchedRankedResult
class BatchedRankedProcessor:
=== Zope3/src/zope/app/index/text/queries.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/index/text/queries.py:1.2 Wed Dec 25 09:12:55 2002
+++ Zope3/src/zope/app/index/text/queries.py Thu May 1 15:35:20 2003
@@ -16,8 +16,7 @@
$Id$
"""
-from zope.app.interfaces.index.interfaces import \
- IBatchedTextIndexQuery, IBatchedResult, IRankedHubIdList
+from zope.app.interfaces.index.interfaces import IBatchedTextIndexQuery
class BatchedTextIndexQuery: