hgext/remotefilelog/shallowstore.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 26 Feb 2024 13:41:02 +0100
changeset 51444 c3f2a9b55f59
parent 48875 6000f5b25c9b
permissions -rw-r--r--
rust-index: stop calling `with_offset` in the tests We are not adding any data, so why are we setting any offset?

# 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