[Zope-CVS] CVS: Products/ZCTextIndex - BaseIndex.py:1.23

Tim Peters tim.one@comcast.net
Mon, 27 May 2002 00:52:11 -0400


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

Modified Files:
	BaseIndex.py 
Log Message:
Whitespace repair.


=== Products/ZCTextIndex/BaseIndex.py 1.22 => 1.23 ===
                 doc2score = {}
             elif (isinstance(doc2score, dicttype) and
-                 len(doc2score) == self.DICT_CUTOFF):
+                  len(doc2score) == self.DICT_CUTOFF):
                 doc2score = IIBTree(doc2score)
             doc2score[docid] = weight
             self._wordinfo[wid] = doc2score # not redundant:  Persistency!