mercurial/__init__.py
author Pierre-Yves David <pierre-yves.david@octobus.net>
Mon, 28 Nov 2022 16:27:23 +0100
changeset 49669 f064b03d061a
parent 48875 6000f5b25c9b
child 51863 f4733654f144
permissions -rw-r--r--
emitrevision: simplify the fallback to computed delta Not using the stored delta, or having a full snapshot on disk behave the same ways, so lets use the same code path for that, this is simpler, and it update will be simpler.

# __init__.py - Startup and module loading logic for Mercurial.
#
# Copyright 2015 Gregory Szorc <gregory.szorc@gmail.com>
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.


# Allow 'from mercurial import demandimport' to keep working.
import hgdemandimport

demandimport = hgdemandimport