Louis (Mischa) Michael
Results
2
issues of
Louis (Mischa) Michael
[Here](https://github.com/marcolagi/quantulum/blob/28b697dfa997116c1aa3ef63a3ceb8725bffd24f/quantulum/classifier.py#L59) it seems to be trying to strip out unicode punctuation but \p{} is not a supported python regex feature, it just matches literal p Example case: >>> re.sub(ur'\p{P}+', '...
I was looking over project regex and I noticed [this one](https://github.com/xiaoxu193/PyTeaser/blob/bcbcae3586cb658d9954f440d15419a4683b48b6/goose/text.py#L90). It seems to try to look for punctuation and is trying to use \p{} for unicode but this is...