usse/scrape/venv/lib/python3.10/site-packages/snowballstemmer/among.py

14 lines
404 B
Python
Raw Normal View History

2023-12-22 14:26:01 +00:00
class Among(object):
def __init__(self, s, substring_i, result, method=None):
"""
@ivar s search string
@ivar substring index to longest matching substring
@ivar result of the lookup
@ivar method method to use if substring matches
"""
self.s = s
self.substring_i = substring_i
self.result = result
self.method = method