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 will break in a future Python release when this is promoted to a SyntaxError.
The text was updated successfully, but these errors were encountered:
vbuild/vbuild/__init__.py
Line 230 in 6b266fd
This is being promoted to a
SyntaxWarning
in Python 3.12:This will break in a future Python release when this is promoted to a
SyntaxError
.The text was updated successfully, but these errors were encountered: