Re: [PATCH v2 05/12] python: fix illegal escape sequences

2025-06-16 Thread Akihiko Odaki
On 2025/06/13 5:54, John Snow wrote: \{ is an illegal escape sequence, to get a literal backslash we need to use \\. This is being fixed because of an issue spotted when attempting to use the pyupgrade script. Signed-off-by: John Snow Reviewed-by: Akihiko Odaki

Re: [PATCH v2 05/12] python: fix illegal escape sequences

2025-06-13 Thread Thomas Huth
On 12/06/2025 22.54, John Snow wrote: \{ is an illegal escape sequence, to get a literal backslash we need to use \\. This is being fixed because of an issue spotted when attempting to use the pyupgrade script. Signed-off-by: John Snow --- scripts/feature_to_c.py | 2 +- 1 file changed, 1 i

[PATCH v2 05/12] python: fix illegal escape sequences

2025-06-12 Thread John Snow
\{ is an illegal escape sequence, to get a literal backslash we need to use \\. This is being fixed because of an issue spotted when attempting to use the pyupgrade script. Signed-off-by: John Snow --- scripts/feature_to_c.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s