Skip to content
New issue

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

Deprecation warning due to invalid escape sequences in Python 3.7 #218

Closed
tirkarthi opened this issue Apr 17, 2020 · 0 comments
Closed

Deprecation warning due to invalid escape sequences in Python 3.7 #218

tirkarthi opened this issue Apr 17, 2020 · 0 comments

Comments

@tirkarthi
Copy link

Deprecation warnings are raised due to invalid escape sequences. This can be fixed by using raw strings or escaping the literals. pyupgrade also helps in automatic conversion : https://github.com/asottile/pyupgrade/

find . -iname '*.py' | grep -v example | xargs -P 4 -I{} python3.8 -Wall -m py_compile {}
./gtts/tokenizer/core.py:6: DeprecationWarning: invalid escape sequence \.
  """Builds regex using arguments passed into a pattern template.
./gtts/tokenizer/core.py:216: DeprecationWarning: invalid escape sequence \,
  """An extensible but simple generic rule-based tokenizer.
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Feb 25, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants