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'd like to fix the following invalid escape sequences scattered across the click code.
click/core.py:1253: DeprecationWarning: invalid escape sequence \s """ click/_compat.py:14: DeprecationWarning: invalid escape sequence [ _ansi_re = re.compile('\033[((?:\d|;)*)([a-zA-Z])') click/decorators.py:111: DeprecationWarning: invalid escape sequence \s ""
If no one disagrees, I'll create a diff making these r''
The text was updated successfully, but these errors were encountered:
Created #807
Sorry, something went wrong.
BTW, I think this will become a hard error in Python 3.7
Closing this because it was merged in #807
No branches or pull requests
I'd like to fix the following invalid escape sequences scattered across the click code.
click/core.py:1253: DeprecationWarning: invalid escape sequence \s
"""
click/_compat.py:14: DeprecationWarning: invalid escape sequence [
_ansi_re = re.compile('\033[((?:\d|;)*)([a-zA-Z])')
click/decorators.py:111: DeprecationWarning: invalid escape sequence \s
""
If no one disagrees, I'll create a diff making these r''
The text was updated successfully, but these errors were encountered: