Unclear whether this is a bug or an issue with the docs, but when I lemmatize a pronoun in 1.3.0, I'm not seeing the `-PRON-` token a la https://spacy.io/docs/api/annotation#lemmatization: ``` >>> sentence = nlp('He is the man.') >>> sentence[0].orth_ 'He' >>> sentence[0].lemma_ 'he' >>> sentence[0].pos_ 'PRON' ``` ## My Environment * El Capitan * Python 3.5.2 * spaCy 1.3.0
Unclear whether this is a bug or an issue with the docs, but when I lemmatize a pronoun in 1.3.0, I'm not seeing the
-PRON-token a la https://spacy.io/docs/api/annotation#lemmatization:My Environment