Merge with main
authorBrendan Cully <brendan@kublai.com>
Fri, 15 Dec 2006 11:14:55 -0800
changeset 3898 316cd5b0c940
parent 3895 7034020aeaf9 (current diff)
parent 3897 f47afa2401a2 (diff)
child 3902 0d27502a804c
Merge with main
mercurial/demandimport.py
--- a/mercurial/demandimport.py
+++ b/mercurial/demandimport.py
@@ -92,7 +92,7 @@ def _demandimport(name, globals=None, lo
                 setattr(mod, x, _demandmod(x, mod.__dict__, mod.__dict__))
         return mod
 
-ignore = []
+ignore = ['_hashlib', 'email.mime']
 
 def enable():
     "enable global demand-loading of modules"
--- a/setup.py
+++ b/setup.py
@@ -17,6 +17,8 @@ import mercurial.version
 import mercurial.demandimport
 mercurial.demandimport.enable = lambda: None
 
+extra = {}
+
 # py2exe needs to be installed to work
 try:
     import py2exe
@@ -35,6 +37,8 @@ try:
     except ImportError:
         pass
 
+    extra['console'] = ['hg']
+
 except ImportError:
     pass
 
@@ -70,4 +74,4 @@ setup(name='mercurial',
                                    license='COPYING',
                                    readme='contrib/macosx/Readme.html',
                                    welcome='contrib/macosx/Welcome.html')),
-      console=['hg'])
+      **extra)