Mercurial > public > mercurial-scm > hg-stable
diff mercurial/changegroup.py @ 3877:abaee83ce0a6
Replace demandload with new demandimport
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 13 Dec 2006 13:27:09 -0600 |
parents | 8c24b6fd5866 |
children | 6b4127c7d52a |
line wrap: on
line diff
--- a/mercurial/changegroup.py Tue Dec 12 18:16:23 2006 -0600 +++ b/mercurial/changegroup.py Wed Dec 13 13:27:09 2006 -0600 @@ -6,9 +6,9 @@ This software may be used and distributed according to the terms of the GNU General Public License, incorporated herein by reference. """ + from i18n import gettext as _ -from demandload import * -demandload(globals(), "struct os bz2 zlib util tempfile") +import struct, os, bz2, zlib, util, tempfile def getchunk(source): """get a chunk from a changegroup"""