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

Deprecated issue with regex declarations on re.compile strings #693

Open
timmyreynolds opened this issue Oct 27, 2023 · 0 comments
Open

Comments

@timmyreynolds
Copy link

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:

  • pony/orm/dbproviders/oracle.py
  • pony/orm/dbapiprovider.py
  • pony/thirdparty/decorator.py
  • pony/converting.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant