hgext3rd/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Fri, 15 Oct 2021 02:36:38 +0200
changeset 48238 ea50caada82d
parent 43076 2372284d9457
child 48875 6000f5b25c9b
permissions -rw-r--r--
path: add a new argument to control path validation During pull, unvalidated path might be used, having the option to do so directly will allow use to simplify some code and unlock more `path` usage later in the series. Differential Revision: https://phab.mercurial-scm.org/D11671

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

__path__ = pkgutil.extend_path(__path__, __name__)