Changeset 234 for branches/mbutscher/work/lib/whoosh/formats.py
- Timestamp:
- 01/09/11 19:37:51 (2 years ago)
- Files:
-
- 1 modified
-
branches/mbutscher/work/lib/whoosh/formats.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/mbutscher/work/lib/whoosh/formats.py
r231 r234 187 187 for t in unstopped(self.analyzer(value, boosts=True, **kwargs)): 188 188 freqs[t.text] += 1 189 weights[t.text] += int(t.boost)189 weights[t.text] += t.boost 190 190 191 191 encode = self.encode
