tests/test-simplemerge.py.out
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 31 Oct 2014 10:41:36 -0700
branchstable
changeset 23115 c23c03605c59
parent 22023 f18830651811
permissions -rw-r--r--
revset: don't recreate matcher for every revision The matcher variable 'm' in checkstatus() is reset to None on each call, so the caching of the matcher no longer happens as it was intended. This seems to be a regression in ed7b674824a3 (revset: added lazyset implementation to checkstatus, 2014-01-03). Fix by moving the cached matcher into the enclosing function so it's actually cached across calls. This speeds up hg log -r 'modifies(mercurial/context.py)' >/dev/null from 7.5s to 4s. Also see similar fix in f2aeff8a87b6 (revset: avoid recalculating filesets, 2014-10-22).

................
----------------------------------------------------------------------
Ran 16 tests in 0.000s

OK