Mercurial > hg
view hgext/remotefilelog/shallowstore.py @ 51236:eb676c35a29b
rust-index: support `unionrepo`'s compressed length hack
Explanations inline.
author | Raphaël Gomès <rgomes@octobus.net> |
---|---|
date | Tue, 31 Oct 2023 17:58:56 +0100 |
parents | 6000f5b25c9b |
children | f4733654f144 |
line wrap: on
line source
# shallowstore.py - shallow store for interacting with shallow repos # # Copyright 2013 Facebook, Inc. # # This software may be used and distributed according to the terms of the # GNU General Public License version 2 or any later version. def wrapstore(store): class shallowstore(store.__class__): def __contains__(self, path): # Assume it exists return True store.__class__ = shallowstore return store