diff mercurial/context.py @ 3886:abaee83ce0a6

Replace demandload with new demandimport
author Matt Mackall <mpm@selenic.com>
date Wed, 13 Dec 2006 13:27:09 -0600
parents 46abbed02b2d
children 6b4127c7d52a
line wrap: on
line diff
--- a/mercurial/context.py
+++ b/mercurial/context.py
@@ -7,8 +7,7 @@
 
 from node import *
 from i18n import gettext as _
-from demandload import demandload
-demandload(globals(), "ancestor bdiff repo revlog util os")
+import ancestor, bdiff, repo, revlog, util, os
 
 class changectx(object):
     """A changecontext object makes access to data related to a particular