B
    P?ð[ð  ã               @   s8   d dl mZmZ d dlmZ eeƒG dd„ deƒƒZdS )é    )ÚABCMetaÚabstractmethod)Úadd_metaclassc               @   s   e Zd ZdZedd„ ƒZdS )ÚStemmerIzx
    A processing interface for removing morphological affixes from
    words.  This process is known as stemming.

    c             C   s   dS )z•
        Strip affixes from the token and return the stem.

        :param token: The token that should be stemmed.
        :type token: str
        N© )ÚselfÚtokenr   r   ú,lib/python3.7/site-packages/nltk/stem/api.pyÚstem   s    zStemmerI.stemN)Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r
   r   r   r   r	   r      s   r   N)Úabcr   r   Zsixr   Úobjectr   r   r   r   r	   Ú<module>
   s   