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

Tim Peters tim.one@comcast.net
Fri, 17 May 2002 02:07:18 -0400


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

Modified Files:
	IIndex.py 
Log Message:
More docstring corrections.


=== Products/ZCTextIndex/IIndex.py 1.4 => 1.5 ===
         """Execute a search on a single term given as a string.
 
-        Return an IIBucket mapping docid to score, or None if all docs
+        Return an IIBTree mapping docid to score, or None if all docs
         match due to the lexicon returning no wids for the term (e.g.,
         if the term is entirely composed of stopwords).
         """
@@ -33,7 +33,7 @@
     def search_phrase(phrase):
         """Execute a search on a phrase given as a string.
 
-        Return an IIBucket.
+        Return an IIBtree mapping docid to score.
         """
 
     def search_glob(pattern):
@@ -45,7 +45,7 @@
 
         NOTE: Currently only a single trailing * is supported.
 
-        Return an IIBucket.
+        Return an IIBTree mapping docid to score.
         """
 
     def query_weight(terms):