hgext3rd/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 24 Jan 2020 15:28:37 -0800
changeset 44454 2f290136b7d6
parent 43076 2372284d9457
child 48966 6000f5b25c9b
permissions -rw-r--r--
merge: make hg.merge() take a context instead of a node Many callers already have a repo, so we might as well pass that. `merge.update()` will look up the context object later. This patch is part of making it so we pass around the context object all the way down instead. I also removed the `repo` argument since it can be retrieved from the context. Differential Revision: https://phab.mercurial-scm.org/D7999

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

__path__ = pkgutil.extend_path(__path__, __name__)