Mercurial > hg
comparison tests/test-issue1175.t @ 17931:35ba170c0f82 stable
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 | 62c8f7691bc3 |
children | 76b69cccb07a 5b7175377bab |
comparison
equal
deleted
inserted
replaced
17924:45bd0cd7ca04 | 17931:35ba170c0f82 |
---|