hgext/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Wed, 08 Aug 2018 23:41:50 -0700
changeset 39071 06ff7ea4f440
parent 28450 155e3308289c
child 43076 2372284d9457
permissions -rw-r--r--
index: avoid duplicating capacity-growth expression We were duplicating the "*2" instead of reusing it. It's overflow-safe to reuse as long as the growth factor (i.e. currently 2) is not larger than sizeof(nodetreenode) (currently 64 or 128). Differential Revision: https://phab.mercurial-scm.org/D4165

from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)