From b362976504c3346b9f34b69dcad0838d1d381037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Mon, 25 Sep 2023 10:39:30 +0200 Subject: SCons: Fix Python 3.12 SyntaxError with regex escape sequences --- methods.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'methods.py') diff --git a/methods.py b/methods.py index a6416ccdd2..7067c21946 100644 --- a/methods.py +++ b/methods.py @@ -1016,13 +1016,13 @@ def get_compiler_version(env): else: # TODO: Implement for MSVC return None match = re.search( - "(?:(?<=version )|(?<=\) )|(?<=^))" - "(?P\d+)" - "(?:\.(?P\d*))?" - "(?:\.(?P\d*))?" - "(?:-(?P[0-9a-zA-Z-]*))?" - "(?:\+(?P[0-9a-zA-Z-]*))?" - "(?: (?P[0-9]{8}|[0-9]{6})(?![0-9a-zA-Z]))?", + r"(?:(?<=version )|(?<=\) )|(?<=^))" + r"(?P\d+)" + r"(?:\.(?P\d*))?" + r"(?:\.(?P\d*))?" + r"(?:-(?P[0-9a-zA-Z-]*))?" + r"(?:\+(?P[0-9a-zA-Z-]*))?" + r"(?: (?P[0-9]{8}|[0-9]{6})(?![0-9a-zA-Z]))?", version, ) if match is not None: -- cgit v1.2.3