##// END OF EJS Templates
revetbenchmarks: use raw string for regular expression with escapes...
Gregory Szorc -
r41686:fbb43514 default
parent child Browse files
Show More
@@ -71,8 +71,8 def perf(revset, target=None, contexts=F
71 71 print(exc.output, file=sys.stderr)
72 72 return None
73 73
74 outputre = re.compile(r'! wall (\d+.\d+) comb (\d+.\d+) user (\d+.\d+) '
75 'sys (\d+.\d+) \(best of (\d+)\)')
74 outputre = re.compile(br'! wall (\d+.\d+) comb (\d+.\d+) user (\d+.\d+) '
75 br'sys (\d+.\d+) \(best of (\d+)\)')
76 76
77 77 def parseoutput(output):
78 78 """parse a textual output into a dict
General Comments 0
You need to be logged in to leave comments. Login now