Mercurial > public > mercurial-scm > hg-stable
diff contrib/churn.py @ 3877:abaee83ce0a6
Replace demandload with new demandimport
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 13 Dec 2006 13:27:09 -0600 |
parents | 4670470b97bd |
children | ba45041827a2 |
line wrap: on
line diff
--- a/contrib/churn.py Tue Dec 12 18:16:23 2006 -0600 +++ b/contrib/churn.py Wed Dec 13 13:27:09 2006 -0600 @@ -11,10 +11,9 @@ # # <alias email> <actual email> -from mercurial.demandload import * +import time, sys, signal, os from mercurial.i18n import gettext as _ -demandload(globals(), 'time sys signal os') -demandload(globals(), 'mercurial:hg,mdiff,fancyopts,cmdutil,ui,util,templater,node') +from mercurial import hg, mdiff, cmdutil, ui, util, templater, node def __gather(ui, repo, node1, node2): def dirtywork(f, mmap1, mmap2):