Mercurial > hg
changeset 17923:1e6b5faf9d4e
grep: don't search past the end of the searched string
'*' causes the resulting RE to match 0 or more repetitions of the preceding RE:
>>> bool(re.search('.*', ''))
>>> True
This causes an infinite loop because currently we're only checking if there was
a match without looking at where we are in the searched string.
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Mon, 12 Nov 2012 19:27:03 +0200 |
parents | 7f5dab94e48c |
children | 2631b3576a33 |
files | mercurial/commands.py tests/test-grep.t |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff