def __init__(self, text): tokenize.__init__(self, '') self._words = text
def __init__(self, words): tokenize.__init__(self, '') self._words = words