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	Sun Dec 17 21:48:22 2006 -0600
+++ b/mercurial/demandimport.py	Sun Dec 17 22:16:57 2006 -0600
@@ -103,7 +103,7 @@
                 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"