hgext3rd/__init__.py
author Yuya Nishihara <yuya@tcha.org>
Sun, 01 Oct 2017 08:37:04 +0100
changeset 34426 12bfecd0ffe6
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
formatter: fix default list/dict generator to be evaluated more than once Before, _hybrid.gen must be a generator which could be consumed only once. It was okay in templatekw.py since template keywords are functions which create temporary hybrid objects, but the formatter doesn't work in that way. To work around the issue, this patch makes _hybrid.gen optionally be a function returning a generator. Thanks to Pulkit for finding this issue.

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