Re: [PATCH 1/1] util/import_gcry.py: avoid SyntaxWarning: invalid escape sequence

2024-04-26 Thread Glenn Washburn
On Mon, 11 Mar 2024 19:34:33 +0100 Heinrich Schuchardt wrote: > Many escape sequences are only valid in raw string. Use these when > invoking re.match() and re.search() to avoid syntax warnings. There's quite a few unnecessary changes (regex strings with no escapes). But I'm okay with it and thi

[PATCH 1/1] util/import_gcry.py: avoid SyntaxWarning: invalid escape sequence

2024-03-11 Thread Heinrich Schuchardt
Many escape sequences are only valid in raw string. Use these when invoking re.match() and re.search() to avoid syntax warnings. Signed-off-by: Heinrich Schuchardt --- util/import_gcry.py | 100 ++-- 1 file changed, 50 insertions(+), 50 deletions(-) diff