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
Getting warnings like this in Python 3.7 when running unit tests:
/var/folders/85/t03cny1x5xz0b1dmpkj17xtd0q80dk/T/tmp9zvmungf/mrjob/dataproc.py:119: DeprecationWarning: invalid escape sequence \w _TRACEBACK_EXCEPTION_RE = re.compile('\w+: .*$')
It looks like in most of these cases, I forgot to use a rawstring (r'').
r''
The text was updated successfully, but these errors were encountered:
This might be a good chance to try running unit tests on Python 3.7 on Travis CI (as well as on 3.8-dev).
3.8-dev
Sorry, something went wrong.
Merge pull request #1928 from davidmarin/use-rawstrings
af6b856
fix deprecated escape sequences in regexes and docstrings (fixes #1920)
Successfully merging a pull request may close this issue.
Getting warnings like this in Python 3.7 when running unit tests:
It looks like in most of these cases, I forgot to use a rawstring (
r''
).The text was updated successfully, but these errors were encountered: