Mercurial > public > mercurial-scm > hg-stable
diff mercurial/demandimport.py @ 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 | a8bd7280330f |
children | b9dcee25be8e |
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"