diff --git a/methods.py b/methods.py index c393e7ca5b4..024cddabb5e 100644 --- a/methods.py +++ b/methods.py @@ -703,7 +703,7 @@ def get_compiler_version(env): return None else: # TODO: Implement for MSVC return None - match = re.search("[0-9]+\.[0-9.]+", version) + match = re.search(r"[0-9]+\.[0-9.]+", version) if match is not None: return list(map(int, match.group().split("."))) else: diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 716930db236..2f0b085c29f 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -344,7 +344,7 @@ def configure(env): import re linker_version_str = subprocess.check_output([env.subst(env["LINK"]), "-Wl,--version"]).decode("utf-8") - gnu_ld_version = re.search("^GNU ld [^$]*(\d+\.\d+)$", linker_version_str, re.MULTILINE) + gnu_ld_version = re.search(r"^GNU ld [^$]*(\d+\.\d+)$", linker_version_str, re.MULTILINE) if not gnu_ld_version: print( "Warning: Creating template binaries enabled for PCK embedding is currently only supported with GNU ld"