diff mercurial/httprepo.py @ 4029:9210fba03d16

merge with -stable
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Mon, 15 Jan 2007 18:23:21 +0100
parents d8b3edf88af0 a195f11ed1a2
children 9dc64c8414ca
line wrap: on
line diff
--- a/mercurial/httprepo.py	Mon Jan 15 17:56:20 2007 +0100
+++ b/mercurial/httprepo.py	Mon Jan 15 18:23:21 2007 +0100
@@ -8,10 +8,9 @@
 
 from node import *
 from remoterepo import *
-from i18n import gettext as _
-from demandload import *
-demandload(globals(), "hg os urllib urllib2 urlparse zlib util httplib")
-demandload(globals(), "errno keepalive tempfile socket changegroup")
+from i18n import _
+import hg, os, urllib, urllib2, urlparse, zlib, util, httplib
+import errno, keepalive, tempfile, socket, changegroup
 
 class passwordmgr(urllib2.HTTPPasswordMgrWithDefaultRealm):
     def __init__(self, ui):