hgext3rd/__init__.py
author Pulkit Goyal <7895pulkit@gmail.com>
Tue, 13 Dec 2016 20:53:40 +0530
changeset 30591 2d555d753f0e
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
py3: make keys of keyword arguments strings keys of keyword arguments on Python 3 has to be string. We are dealing with bytes in our codebase so the keys are also bytes. Done that using pycompat.strkwargs(). Also after this patch, `hg version` now runs on Python 3.5. Hurray!

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