From 605ef6f5a292fe169b1469b0a8996f3d5ae53daf Mon Sep 17 00:00:00 2001 From: Adrian Freihofer Date: Sat, 10 Feb 2024 14:15:54 +0100 Subject: scripts: python 3.12 regex All the regexes throw a warning like this: WARNING: scripts/lib/recipetool/create_buildsys.py:140: SyntaxWarning: invalid escape sequence '\s' proj_re = re.compile('project\s*\(([^)]*)\)', re.IGNORECASE) Python 3 interprets string literals as Unicode strings, and therefore \s is treated as an escaped Unicode character which is not correct. Declaring the RegEx pattern as a raw string instead of unicode is required for Python 3. (From OE-Core rev: 24b0ba00d4f0b4d9834f7693ecb6032dfc534a80) Signed-off-by: Adrian Freihofer Signed-off-by: Richard Purdie --- scripts/patchtest-get-branch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/patchtest-get-branch') diff --git a/scripts/patchtest-get-branch b/scripts/patchtest-get-branch index b5fb2b0f04..c6e242f8b6 100755 --- a/scripts/patchtest-get-branch +++ b/scripts/patchtest-get-branch @@ -16,7 +16,7 @@ import argparse import re import git -re_prefix = re.compile("(\[.*\])", re.DOTALL) +re_prefix = re.compile(r"(\[.*\])", re.DOTALL) def get_branch(filepath_repo, filepath_mbox, default_branch): branch = None -- cgit v1.2.3-54-g00ecf