mercurial/__init__.py
author Nicolas Dumazet <nicdumz.commits@gmail.com>
Tue, 20 Jul 2010 14:42:05 +0900
changeset 11635 4da35e02b67c
parent 0 9117c6561b0b
child 27220 4374d819ccd5
permissions -rw-r--r--
log: do not redefine cachefunc in walkchangerevs The same variable is defined a few blocks earlier. The first phases in walkchangerevs should in fact fill that cache, and allow faster lookups in the last phase. Redefining and overriding this cached function, (knowing that it will be called with the same arguments) defeats the caching purpose.