[Zope-CVS] CVS: Products/ZCTextIndex - StopDict.py:1.1.2.2

Jeremy Hylton jeremy@zope.com
Thu, 2 May 2002 12:49:33 -0400


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

Modified Files:
      Tag: TextIndexDS9-branch
	StopDict.py 
Log Message:
stop word dictionary must map keys to None,
or the splitter will treat the value as a replacement.


=== Products/ZCTextIndex/StopDict.py 1.1.2.1 => 1.1.2.2 ===
 _dict = {}
 for w in _words:
-    _dict[w] = 1
+    _dict[w] = None