hgext3rd/__init__.py
author Martin von Zweigbergk <martinvonz@google.com>
Thu, 18 Apr 2019 21:21:44 -0700
changeset 42502 5ceb91136ebe
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
copies: avoid unnecessary copying of copy dict When storing copy information in the changesets, this patch speeds up hg debugpathcopies FENNEC_58_0_2_BUILD1 FIREFOX_59_0b8_BUILD2 from 11s to 5.9s. That command takes 6.2s when storing copy information in filelogs. Differential Revision: https://phab.mercurial-scm.org/D6421

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