Skip to content
Snippets Groups Projects
Commit 175e4a0d authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

py3: use byte for the regext parsing the perf extensions output

parent f39c0492
No related branches found
No related tags found
No related merge requests found
......@@ -233,7 +233,7 @@
subprocess.CalledProcessError = CalledProcessError
PERF_RE = re.compile(r'! wall (\d+.\d+) comb (\d+.\d+) user (\d+.\d+) sys (\d+.\d+) \(best of (\d+)\)') # noqa: E501
PERF_RE = re.compile(br'! wall (\d+.\d+) comb (\d+.\d+) user (\d+.\d+) sys (\d+.\d+) \(best of (\d+)\)') # noqa: E501
###
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment