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

"invalid escape sequence" DeprecationWarnings with Python 3.6 #646

Closed
The-Compiler opened this issue Jan 8, 2017 · 4 comments
Closed

"invalid escape sequence" DeprecationWarnings with Python 3.6 #646

The-Compiler opened this issue Jan 8, 2017 · 4 comments

Comments

@The-Compiler
Copy link
Contributor

I get these while running my project's testsuite with all warnings turned on and Python 3.6:

.../jinja2/nodes.py:716: DeprecationWarning: invalid escape sequence \s
         """
       
.../jinja2/runtime.py:111: DeprecationWarning: invalid escape sequence \s
         """
       
.../jinja2/lexer.py:294: DeprecationWarning: invalid escape sequence \s
         """
       
.../jinja2/lexer.py:503: DeprecationWarning: invalid escape sequence \-
         (c('(?:\-%s\s*|%s)%s' % (
       
.../jinja2/lexer.py:511: DeprecationWarning: invalid escape sequence \-
         (c('\-%s\s*|%s' % (
       
.../jinja2/lexer.py:518: DeprecationWarning: invalid escape sequence \s
         (c('(.*?)((?:\s*%s\-|%s)\s*endraw\s*(?:\-%s\s*|%s%s))' % (

It looks like it's mostly \s in (non-raw) docstrings and \- in regexes. For some odd reason I can't reproduce this when running pylint's testsuite with pytest-warnings though, so I don't know if there's more.

@ThiefMaster
Copy link
Member

I think those strings should be r'...' raw strings to avoid exactly such warnings

@ThiefMaster
Copy link
Member

FWIW, I don't think any \ is needed for the - - outside [] the dash has no special meaning.

@MartinThoma
Copy link

pip3 install jinja --user --upgrade solved it for me.

@abrahamrhoffman
Copy link

abrahamrhoffman commented Oct 25, 2019

raw string conversion ftw! I came here looking for a solution to my linting problems :) thanks for the tip!

r"awk -F\my_string '{print $1}'"

not

"awk -F\my_string '{print $1}'"

apriha added a commit to apriha/snps that referenced this issue Jun 5, 2020
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Nov 13, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants