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 \\+.
Or rather, use backticks so that it will look sensible whether you read the commit message as Markdown or as plain text. I don't want to force people to look at commits on the website!
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\\+
.