comparison mercurial/manifest.py @ 2142:8a1e2a9c7013

Replaced 0 with REVLOGV0 where this meaning is used.
author Thomas Arendsen Hein <thomas@intevation.de>
date Thu, 27 Apr 2006 21:16:46 +0200
parents 74d3f5336b66
children dbdce3b99988
comparison
equal deleted inserted replaced
2141:ed631e83fa06 2142:8a1e2a9c7013
10 from i18n import gettext as _ 10 from i18n import gettext as _
11 from demandload import * 11 from demandload import *
12 demandload(globals(), "bisect array") 12 demandload(globals(), "bisect array")
13 13
14 class manifest(revlog): 14 class manifest(revlog):
15 def __init__(self, opener, defversion=0): 15 def __init__(self, opener, defversion=REVLOGV0):
16 self.mapcache = None 16 self.mapcache = None
17 self.listcache = None 17 self.listcache = None
18 revlog.__init__(self, opener, "00manifest.i", "00manifest.d", 18 revlog.__init__(self, opener, "00manifest.i", "00manifest.d",
19 defversion) 19 defversion)
20 20