mercurial/revlog.py
changeset 3755 05120e210c65
parent 3754 cd25a4a1a265
child 3877 abaee83ce0a6
child 3923 27230c29bfec
equal deleted inserted replaced
3754:cd25a4a1a265 3755:05120e210c65
    79 # 4 bytes parent 1 rev
    79 # 4 bytes parent 1 rev
    80 # 4 bytes parent 2 rev
    80 # 4 bytes parent 2 rev
    81 # 32 bytes: nodeid
    81 # 32 bytes: nodeid
    82 indexformatng = ">Qiiiiii20s12x"
    82 indexformatng = ">Qiiiiii20s12x"
    83 ngshaoffset = 32
    83 ngshaoffset = 32
    84 versionformat = ">i"
    84 versionformat = ">I"
    85 
    85 
    86 class lazyparser(object):
    86 class lazyparser(object):
    87     """
    87     """
    88     this class avoids the need to parse the entirety of large indices
    88     this class avoids the need to parse the entirety of large indices
    89     """
    89     """