You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A backslash-character pair that is not a valid escape sequence now generates a SyntaxWarning, instead of DeprecationWarning. For example, re.compile("\d+.\d+") now emits a SyntaxWarning ("\d" is an invalid escape sequence, use raw strings for regular expression: re.compile(r"\d+.\d+")). In a future Python version, SyntaxError will eventually be raised, instead of SyntaxWarning. (Contributed by Victor Stinner in gh-98401.)
This should be fixed. I can work on that. In the meantime, anybody's very welcome to do it, but then please leave a note here when you start!
Hello, Python3.12 seems to detect malformed strings like this.
I am wondering if these strings should not be marked with r'' in order to avoid interpretation of the escape sequences.
The text was updated successfully, but these errors were encountered: