Mercurial > public > mercurial-scm > hg-stable
diff mercurial/demandimport.py @ 4126:b9dcee25be8e
Add _xmlplus to the demandimport blacklist. (HGCIA was failing to load.)
author | Brendan Cully <brendan@kublai.com> |
---|---|
date | Sat, 03 Mar 2007 18:59:54 -0800 |
parents | 33988aaa1652 |
children | eb99af2d845e |
line wrap: on
line diff
--- a/mercurial/demandimport.py Fri Mar 02 14:03:30 2007 -0800 +++ b/mercurial/demandimport.py Sat Mar 03 18:59:54 2007 -0800 @@ -103,7 +103,7 @@ setattr(mod, x, _demandmod(x, mod.__dict__, mod.__dict__)) return mod -ignore = ['_hashlib', 'fcntl', 'win32com.gen_py'] +ignore = ['_hashlib', '_xmlplus', 'fcntl', 'win32com.gen_py'] def enable(): "enable global demand-loading of modules"