# HG changeset patch # User Matt Mackall # Date 2006-12-18 04:16:57 # Node ID 33988aaa16520de1e3aae20fbcbce6cd7c308703 # Parent 4df475e222486bfd1cdbd59a66b30d5d50540de0 Add some modules to the demandimport ignore list for Windows diff --git a/mercurial/demandimport.py b/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"