mercurial/store.py
changeset 52645 4cb75772818d
parent 52644 e627cc25b6f3
child 52692 45dc0f874b8c
equal deleted inserted replaced
52644:e627cc25b6f3 52645:4cb75772818d
    52 # how much bytes should be read from fncache in one read
    52 # how much bytes should be read from fncache in one read
    53 # It is done to prevent loading large fncache files into memory
    53 # It is done to prevent loading large fncache files into memory
    54 fncache_chunksize = 10**6
    54 fncache_chunksize = 10**6
    55 
    55 
    56 
    56 
    57 def _match_tracked_entry(entry: "BaseStoreEntry", matcher):
    57 def _match_tracked_entry(entry: BaseStoreEntry, matcher):
    58     """parses a fncache entry and returns whether the entry is tracking a path
    58     """parses a fncache entry and returns whether the entry is tracking a path
    59     matched by matcher or not.
    59     matched by matcher or not.
    60 
    60 
    61     If matcher is None, returns True"""
    61     If matcher is None, returns True"""
    62 
    62