Skip to content
Snippets Groups Projects
Commit d516b6de authored by Siddharth Agarwal's avatar Siddharth Agarwal
Browse files

match: use util.re.escape instead of re.escape

For a pathological .hgignore with over 2500 glob lines and over 200000 calls to
re.escape, and with re2 available, this speeds up parsing the .hgignore from
0.75 seconds to 0.20 seconds. This causes e.g. 'hg status' with hgwatchman
enabled to go from 1.02 seconds to 0.47 seconds.
parent 10e99839
No related branches found
No related tags found
No related merge requests found
......@@ -247,7 +247,7 @@
i, n = 0, len(pat)
res = ''
group = 0
escape = re.escape
escape = util.re.escape
def peek():
return i < n and pat[i]
while i < n:
......@@ -310,7 +310,7 @@
if kind == 're':
return pat
if kind == 'path':
return '^' + re.escape(pat) + '(?:/|$)'
return '^' + util.re.escape(pat) + '(?:/|$)'
if kind == 'relglob':
return '(?:|.*/)' + _globre(pat) + globsuffix
if kind == 'relpath':
......@@ -314,7 +314,7 @@
if kind == 'relglob':
return '(?:|.*/)' + _globre(pat) + globsuffix
if kind == 'relpath':
return re.escape(pat) + '(?:/|$)'
return util.re.escape(pat) + '(?:/|$)'
if kind == 'relre':
if pat.startswith('^'):
return pat
......
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