hgext3rd/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Wed, 28 Feb 2018 10:21:43 -0800
changeset 36464 3f0af89e008d
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
narrow: move requirement constant to core My short-term goal is to move narrowrepo.narrowmatch() onto localrepo and this is a necessary step for that. I put the constant in changegroup.py, unlike REVLOGV2_REQUIREMENT, which is in localrepo.py, since we'll need to access it from the changegroup module eventually. Differential Revision: https://phab.mercurial-scm.org/D2487

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