mercurial/filelog.py
changeset 52489 ba8f03ad8906
parent 52468 4ef6dbc27a99
child 52643 5cc8deb96b48
equal deleted inserted replaced
52488:8c89e978375c 52489:ba8f03ad8906
    26     constants as revlog_constants,
    26     constants as revlog_constants,
    27     rewrite,
    27     rewrite,
    28 )
    28 )
    29 
    29 
    30 
    30 
    31 class filelog:  # (repository.ifilestorage)
    31 class filelog(repository.ifilestorage):
    32     _revlog: revlog.revlog
    32     _revlog: revlog.revlog
    33     nullid: bytes
    33     nullid: bytes
    34     _fix_issue6528: bool
    34     _fix_issue6528: bool
    35 
    35 
    36     def __init__(self, opener, path, try_split=False):
    36     def __init__(self, opener, path, try_split=False):