Add some modules to the demandimport ignore list for Windows
authorMatt Mackall <mpm@selenic.com>
Sun, 17 Dec 2006 22:16:57 -0600
changeset 3929 33988aaa1652
parent 3928 4df475e22248
child 3930 01d98d68d697
Add some modules to the demandimport ignore list for Windows
mercurial/demandimport.py
--- a/mercurial/demandimport.py
+++ b/mercurial/demandimport.py
@@ -103,7 +103,7 @@ def _demandimport(name, globals=None, lo
                 setattr(mod, x, _demandmod(x, mod.__dict__, mod.__dict__))
         return mod
 
-ignore = ['_hashlib']
+ignore = ['_hashlib', 'fcntl', 'win32com.gen_py']
 
 def enable():
     "enable global demand-loading of modules"