changeset 3929:33988aaa1652

Add some modules to the demandimport ignore list for Windows
author Matt Mackall <mpm@selenic.com>
date Sun, 17 Dec 2006 22:16:57 -0600
parents 4df475e22248
children 01d98d68d697
files mercurial/demandimport.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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"