summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/update
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:33 +0000
commit086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch)
treea4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /testing/web-platform/update
parentAdding debian version 124.0.1-1. (diff)
downloadfirefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz
firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/update')
-rw-r--r--testing/web-platform/update/tree.py6
-rw-r--r--testing/web-platform/update/upstream.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/testing/web-platform/update/tree.py b/testing/web-platform/update/tree.py
index 48197c74b6..34e333bfe6 100644
--- a/testing/web-platform/update/tree.py
+++ b/testing/web-platform/update/tree.py
@@ -157,13 +157,13 @@ class GeckoCommitMessage(CommitMessage):
# than just enforce a general pattern.
_bug_re = re.compile(
- "^Bug (\d+)[^\w]*(?:Part \d+[^\w]*)?(.*?)\s*(?:r=(\w*))?$", re.IGNORECASE
+ r"^Bug (\d+)[^\w]*(?:Part \d+[^\w]*)?(.*?)\s*(?:r=(\w*))?$", re.IGNORECASE
)
_backout_re = re.compile(
- "^(?:Back(?:ing|ed)\s+out)|Backout|(?:Revert|(?:ed|ing))", re.IGNORECASE
+ r"^(?:Back(?:ing|ed)\s+out)|Backout|(?:Revert|(?:ed|ing))", re.IGNORECASE
)
- _backout_sha1_re = re.compile("(?:\s|\:)(0-9a-f){12}")
+ _backout_sha1_re = re.compile(r"(?:\s|\:)(0-9a-f){12}")
def _parse_message(self):
CommitMessage._parse_message(self)
diff --git a/testing/web-platform/update/upstream.py b/testing/web-platform/update/upstream.py
index 21efc72a13..7ca29ec5ed 100644
--- a/testing/web-platform/update/upstream.py
+++ b/testing/web-platform/update/upstream.py
@@ -174,7 +174,7 @@ class LoadCommits(Step):
)
update_regexp = re.compile(
- "Bug \d+ - Update web-platform-tests to revision [0-9a-f]{40}"
+ r"Bug \d+ - Update web-platform-tests to revision [0-9a-f]{40}"
)
state.has_backouts = False