From 01c268f291955dd6aa6783755c9bc34bdbd17c9a Mon Sep 17 00:00:00 2001 From: Dustin Rodrigues Date: Sat, 28 Jun 2025 16:43:03 -0400 Subject: [PATCH] use raw string literal for regex --- pythonbuild/cpython.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonbuild/cpython.py b/pythonbuild/cpython.py index f339037c..c52f7ce6 100644 --- a/pythonbuild/cpython.py +++ b/pythonbuild/cpython.py @@ -672,7 +672,7 @@ def derive_setup_local( } -RE_INITTAB_ENTRY = re.compile('\{"([^"]+)", ([^\}]+)\},') +RE_INITTAB_ENTRY = re.compile(r'\{"([^"]+)", ([^\}]+)\},') def parse_config_c(s: str):