[Zope-CVS] CVS: Products/ZCTextIndex - BaseIndex.py:1.18
Tim Peters
tim.one@comcast.net
Thu, 23 May 2002 11:55:59 -0400
Update of /cvs-repository/Products/ZCTextIndex
In directory cvs.zope.org:/tmp/cvs-serv29841
Modified Files:
BaseIndex.py
Log Message:
get_words: repair docstring.
=== Products/ZCTextIndex/BaseIndex.py 1.17 => 1.18 ===
def get_words(self, docid):
- """Returns the wordids for a given docid"""
+ """Return a list of the wordids for a given docid."""
return WidCode.decode(self._docwords[docid])
# A subclass may wish to extend or override this.