view hgext3rd/__init__.py @ 5615:947820d4b476 stable

compat: add implementations of new merge.update() and merge.clean_update() This adds `compat.update()`, `compat.clean_update()`, which will delegate to the same functions from `mercurial.merge` when they are available, or fall back to calling `hg.updaterepo()` when they're not.
author Martin von Zweigbergk <martinvonz@google.com>
date Fri, 02 Oct 2020 10:09:14 -0700
parents 143c8e4dc22d
children
line wrap: on
line source

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)