view hgext3rd/__init__.py @ 32423:859496bb6db3

demandimport: add python 3 implementation This implementation uses the new importlib finder/loader functionality available in Python 3.5 and up. # no-check-commit
author Siddharth Agarwal <sid0@fb.com>
date Sun, 21 May 2017 12:23:04 -0700
parents 4b81487a01d4
children 2372284d9457
line wrap: on
line source

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