hgext/remotefilelog/shallowstore.py
author Raphaël Gomès <rgomes@octobus.net>
Wed, 11 Jan 2023 17:28:48 +0100
changeset 49983 795b5b01cbd2
parent 48875 6000f5b25c9b
child 51863 f4733654f144
permissions -rw-r--r--
rhg-files: make signature of `display_files` more flexible This allows the callers to use any error type that converts to `CommandError` instead of a particular concrete type.

# 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