Mercurial > public > mercurial-scm > hg
diff mercurial/context.py @ 3877: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 Tue Dec 12 18:16:23 2006 -0600 +++ b/mercurial/context.py Wed Dec 13 13:27:09 2006 -0600 @@ -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