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