hgext3rd/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Fri, 21 Dec 2018 10:13:49 -0800
changeset 41043 ce0bc2952e2a
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
narrow: detect if narrowspec was changed in a different share With this commit, `hg share` should be usable with narrow repos. Design explained on https://www.mercurial-scm.org/wiki/NarrowSharePlan I was running into cache invalidation problems when updating the narrowspec. After spending a day trying to figure out a good solution, I resorted to just assigning repo.narrowpats and repo._narrowmatch after invalidating them. Differential Revision: https://phab.mercurial-scm.org/D5278

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