summaryrefslogtreecommitdiffstats
path: root/testing/talos/talos/xtalos/xperf_analyzer.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/talos/talos/xtalos/xperf_analyzer.py')
-rw-r--r--testing/talos/talos/xtalos/xperf_analyzer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/talos/talos/xtalos/xperf_analyzer.py b/testing/talos/talos/xtalos/xperf_analyzer.py
index 833dc9960a..e66fd5494b 100644
--- a/testing/talos/talos/xtalos/xperf_analyzer.py
+++ b/testing/talos/talos/xtalos/xperf_analyzer.py
@@ -671,7 +671,7 @@ class SessionStoreWindowRestored(ClassicEvent):
class ProcessStart(XPerfEvent):
cmd_line_index = None
process_index = None
- extractor = re.compile("^(.+) \(\s*(\d+)\)$")
+ extractor = re.compile(r"^(.+) \(\s*(\d+)\)$")
def __init__(self, leafname):
super(ProcessStart, self).__init__("P-Start")
@@ -746,7 +746,7 @@ class ThreadStart(XPerfEvent):
process_index = None
tid_index = None
- pid_extractor = re.compile("^.+ \(\s*(\d+)\)$")
+ pid_extractor = re.compile(r"^.+ \(\s*(\d+)\)$")
def __init__(self):
super(ThreadStart, self).__init__("T-Start")