<!--- Please provide a summary in the title and describe your issue here. Is this a bug or feature request? If a bug, include all the steps that led to the issue. If you're looking for help with your code, consider posting a question on StackOverflow instead: http://stackoverflow.com/questions/tagged/spacy --> ``` >>> import en_core_web_sm >>> nlp = en_core_web_sm.load() >>> doc = nlp('Difference!.') >>> for tok in doc: print(tok) ... Difference!. >>> doc = nlp('Candidate!Welcome!') >>> for tok in doc: print(tok) ... Candidate!Welcome ! ``` ## Your Environment <!-- Include details of your environment. If you're using spaCy 1.7+, you can also type `python -m spacy info --markdown` and copy-paste the result here.--> * Operating System: * Python Version Used: 3.5.2 * spaCy Version Used: 1.9.0 * Environment Information: