view hgext3rd/__init__.py @ 36294:c69e78ef2b54

py3: port f to Python 3 This involved a lot of b'' literals, conversion from %s to %d, and using a hashing mechanism that returns bytes instead of str. Differential Revision: https://phab.mercurial-scm.org/D2299
author Gregory Szorc <gregory.szorc@gmail.com>
date Sat, 17 Feb 2018 13:55:12 -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__)