summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-05-27 12:01:05 +1000
committerDamien George <damien@micropython.org>2024-05-27 13:56:55 +1000
commit1ea06b99d8cc0cbcdb6d136eee607db67d12b37c (patch)
tree95e2c6ed66906cf8afc4d369cf45b2b6d607a8cb
parentc0a25a69eb9532396c7ff06dd8ab506403aba4a2 (diff)
downloadmicropython-1ea06b99d8cc0cbcdb6d136eee607db67d12b37c.tar.gz
micropython-1ea06b99d8cc0cbcdb6d136eee607db67d12b37c.zip
tests/extmod: Fix regex strings to be of r"" type.
Otherwise escape characters like \s and \W won't work correctly. Signed-off-by: Damien George <damien@micropython.org>
-rw-r--r--tests/extmod/re_namedclass.py6
-rw-r--r--tests/extmod/re_sub.py4
2 files changed, 5 insertions, 5 deletions
diff --git a/tests/extmod/re_namedclass.py b/tests/extmod/re_namedclass.py
index 442172f4ab..e712566719 100644
--- a/tests/extmod/re_namedclass.py
+++ b/tests/extmod/re_namedclass.py
@@ -31,6 +31,6 @@ m = re.match(r"(([0-9]*)([a-z]*)\d*)", "1234hello567")
print_groups(m)
# named class within a class set
-print_groups(re.match("([^\s]+)\s*([^\s]+)", "1 23"))
-print_groups(re.match("([\s\d]+)([\W]+)", "1 2-+="))
-print_groups(re.match("([\W]+)([^\W]+)([^\S]+)([^\D]+)", " a_1 23"))
+print_groups(re.match(r"([^\s]+)\s*([^\s]+)", "1 23"))
+print_groups(re.match(r"([\s\d]+)([\W]+)", "1 2-+="))
+print_groups(re.match(r"([\W]+)([^\W]+)([^\S]+)([^\D]+)", " a_1 23"))
diff --git a/tests/extmod/re_sub.py b/tests/extmod/re_sub.py
index 229c0e63ee..2c7c6c10f1 100644
--- a/tests/extmod/re_sub.py
+++ b/tests/extmod/re_sub.py
@@ -15,9 +15,9 @@ def multiply(m):
return str(int(m.group(0)) * 2)
-print(re.sub("\d+", multiply, "10 20 30 40 50"))
+print(re.sub(r"\d+", multiply, "10 20 30 40 50"))
-print(re.sub("\d+", lambda m: str(int(m.group(0)) // 2), "10 20 30 40 50"))
+print(re.sub(r"\d+", lambda m: str(int(m.group(0)) // 2), "10 20 30 40 50"))
def A():