Show More
@@ -30,8 +30,9 b' class manifestdict(dict):' | |||
|
30 | 30 | |
|
31 | 31 | class manifest(revlog.revlog): |
|
32 | 32 | def __init__(self, opener): |
|
33 |
# we expect to deal with not more than |
|
|
34 | self._mancache = util.lrucachedict(3) | |
|
33 | # we expect to deal with not more than four revs at a time, | |
|
34 | # during a commit --amend | |
|
35 | self._mancache = util.lrucachedict(4) | |
|
35 | 36 | revlog.revlog.__init__(self, opener, "00manifest.i") |
|
36 | 37 | |
|
37 | 38 | def parse(self, lines): |
General Comments 0
You need to be logged in to leave comments.
Login now