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.
The text was updated successfully, but these errors were encountered:
ndhaller
added a commit
to ndhaller/edk2-edkrepo
that referenced
this issue
Jun 19, 2024
The first time running edkrepo with Python 3.12.4 produces three SyntaxWarning messages.
Clearing the
__pycache__
folders and running again produces the SyntaxWarning again.SyntaxWarning messages not reproducible with Python 3.11.9.
https://docs.python.org/3/whatsnew/3.12.html
The text was updated successfully, but these errors were encountered: