Submitter | phabricator |
---|---|
Date | June 27, 2018, 2:21 p.m. |
Message ID | <differential-rev-PHID-DREV-bh6swyjuvym4r72jopd7-req@phab.mercurial-scm.org> |
Download | mbox | patch |
Permalink | /patch/32461/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/utils/stringutil.py b/mercurial/utils/stringutil.py --- a/mercurial/utils/stringutil.py +++ b/mercurial/utils/stringutil.py @@ -25,7 +25,7 @@ # regex special chars pulled from https://bugs.python.org/issue29995 # which was part of Python 3.7. -_respecial = pycompat.bytestr(b'()[]{}?*+-|^$\\.# \t\n\r\v\f') +_respecial = pycompat.bytestr(b'()[]{}?*+-|^$\\.&~# \t\n\r\v\f') _regexescapemap = {ord(i): (b'\\' + i).decode('latin1') for i in _respecial} def reescape(pat):