hgext3rd/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Sat, 21 Nov 2020 09:30:34 +0100
changeset 46125 61afe6215aef
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
copies-rust: extract conflicting value comparison in its own function First, that logic is complicated enough to be in it own function. Second, we want to start adding alternative path within the merge code so we need this logic easily accessible in multiple places. Differential Revision: https://phab.mercurial-scm.org/D9424

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil

__path__ = pkgutil.extend_path(__path__, __name__)