hgext/remotefilelog/shallowstore.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 23 Feb 2023 04:28:24 +0100
changeset 50231 6794f927bc48
parent 48966 6000f5b25c9b
child 51901 f4733654f144
permissions -rw-r--r--
narrow: enforce that narrow spec is written within a transaction

# 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