mercurial/revlogutils/__init__.py
changeset 49677 05db41701ece
parent 48946 642e31cb55f0
child 51326 398a105b16a0
equal deleted inserted replaced
49676:4302db0f54c8 49677:05db41701ece
    65 class revisioninfo:
    65 class revisioninfo:
    66     """Information about a revision that allows building its fulltext
    66     """Information about a revision that allows building its fulltext
    67     node:       expected hash of the revision
    67     node:       expected hash of the revision
    68     p1, p2:     parent revs of the revision
    68     p1, p2:     parent revs of the revision
    69     btext:      built text cache consisting of a one-element list
    69     btext:      built text cache consisting of a one-element list
    70     cachedelta: (baserev, uncompressed_delta) or None
    70     cachedelta: (baserev, uncompressed_delta, usage_mode) or None
    71     flags:      flags associated to the revision storage
    71     flags:      flags associated to the revision storage
    72 
    72 
    73     One of btext[0] or cachedelta must be set.
    73     One of btext[0] or cachedelta must be set.
    74     """
    74     """
    75 
    75