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
Incorrect/Correct syntax by example:
# Incorrect Syntax, missing 'r' prefix import re DEF = re.compile('foo\sbar')
# Correct Syntax, includes 'r' prefix import re DEF = re.compile(r'foo\sbar')
Affected files:
The text was updated successfully, but these errors were encountered:
Fix raw string regex patterns
d55b747
- Add 'r' prefix to regex patterns in: - pony/orm/dbproviders/oracle.py - pony/orm/dbapiprovider.py - pony/thirdparty/decorator.py - pony/converting.py Fixes ponyorm#693
df6e4d0
d0c6581
No branches or pull requests
Incorrect/Correct syntax by example:
Affected files:
The text was updated successfully, but these errors were encountered: