mercurial/__init__.py
author Gregory Szorc <gregory.szorc@gmail.com>
Tue, 01 Mar 2022 20:52:32 -0800
changeset 49026 2cce2fa5bcf7
parent 48966 6000f5b25c9b
permissions -rw-r--r--
py3: replace pycompat.itervalues(x) with x.values() pycompat.itervalues(x) just calls x.values(). So this is equivalent. The rewrite was perfomed via an automated search and replace. Differential Revision: https://phab.mercurial-scm.org/D12341

# __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