hgext3rd/__init__.py
author Augie Fackler <augie@google.com>
Sat, 14 Oct 2017 12:03:42 -0400
changeset 34727 a652b7763f66
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
peer: when collecting method names for batch calls, bytes-ify __name__ This will explode violently if we have a non-ascii command name. That shouldn't ever happen in core, and seems unlikely even in third-party code. Regardless, it'll explode violently, so we can revisit things in the future if we need to change the encoding here. Differential Revision: https://phab.mercurial-scm.org/D1092

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