view hgext3rd/__init__.py @ 34255:d6af8da4a3b8

py3: rewrite stdout hack of doctest by using ui.pushbuffer() We can't use pycompat.stdout here because the doctest runner replaces sys.stdout with a string buffer.
author Yuya Nishihara <yuya@tcha.org>
date Sun, 17 Sep 2017 12:39:14 +0900
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__)