We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I see these warnings each time I run:
...python3.6/site-packages/slugify/main.py:65 ...python3.6/site-packages/slugify/main.py:65: DeprecationWarning: invalid escape sequence \p ''' ...python3.6/site-packages/slugify/main.py:98 ...python3.6/site-packages/slugify/main.py:98: DeprecationWarning: invalid escape sequence \L PRETRANSLATE = re.compile(u'(\L<options>)', options=convert_dict) ...python3.6/site-packages/slugify/main.py:140 ...python3.6/site-packages/slugify/main.py:140: DeprecationWarning: invalid escape sequence \p unwanted_chars_re = u'[^\p{{AlNum}}{safe_chars}]+'.format(safe_chars=re.escape(self._safe_chars or '')) ...python3.6/site-packages/slugify/main.py:144 ...python3.6/site-packages/slugify/main.py:144: DeprecationWarning: invalid escape sequence \p unwanted_chars_and_words_re = unwanted_chars_re + u'|(?<!\p{AlNum})(?:\L<stop_words>)(?!\p{AlNum})'
Perhaps this is the problem: https://stackoverflow.com/questions/50504500/deprecationwarning-invalid-escape-sequence-what-to-use-instead-of-d
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I see these warnings each time I run:
Perhaps this is the problem:
https://stackoverflow.com/questions/50504500/deprecationwarning-invalid-escape-sequence-what-to-use-instead-of-d
The text was updated successfully, but these errors were encountered: