[Zope-CVS] CVS: Products/ZCTextIndex - IIndex.py:1.1.2.3

Fred L. Drake, Jr. fdrake@acm.org
Tue, 30 Apr 2002 19:58:55 -0400


Update of /cvs-repository/Products/ZCTextIndex
In directory cvs.zope.org:/tmp/cvs-serv10359

Modified Files:
      Tag: TextIndexDS9-branch
	IIndex.py 
Log Message:
An interface is defined with a class statement, not a def statement.

=== Products/ZCTextIndex/IIndex.py 1.1.2.2 => 1.1.2.3 ===
 import Interface
 
-def IIndex(Interface.Base):
+class IIndex(Interface.Base):
     """Interface for an Index."""
 
     def search(term):