[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/index/text - index.py:1.6
Guido van Rossum
guido@python.org
Wed, 4 Dec 2002 16:36:52 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/App/index/text
In directory cvs.zope.org:/tmp/cvs-serv13684
Modified Files:
index.py
Log Message:
Minor cleanup.
=== Zope3/lib/python/Zope/App/index/text/index.py 1.5 => 1.6 ===
--- Zope3/lib/python/Zope/App/index/text/index.py:1.5 Wed Dec 4 15:00:52 2002
+++ Zope3/lib/python/Zope/App/index/text/index.py Wed Dec 4 16:36:51 2002
@@ -16,6 +16,8 @@
Events related to object creation and deletion are translated into
index_doc() and unindex_doc() calls.
+In addition, this implements TTW subscription management.
+
$Id$
"""
@@ -38,8 +40,8 @@
class TextIndex(TextIndexWrapper):
- __implements__ = TextIndexWrapper.__implements__ + (ISubscriber,
- IUITextIndex)
+ __implements__ = (TextIndexWrapper.__implements__,
+ ISubscriber, IUITextIndex)
def notify(wrapped_self, event):
"""An event occurred. Index or unindex the object in response."""