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
Fix Python SyntaxWarning in two f-string literals.
Building on Ubuntu 24.04, multilib-generate.py provokes some
SyntaxWarning messages from Python 3.12, because of cases where we'd
written `\+` in a string, intended to be emitted literally. 3.12 still
_does_ emit it literally, but prints a warning pointing out that we
should properly escape the backslash, writing it as `\\+`.
0 commit comments