# HG changeset patch # User Brendan Cully # Date 1172977194 28800 # Node ID b9dcee25be8e5c1baed05cf74aa73a3670379cad # Parent ef7c39ae5d4c597db98a7ef4a42941e37a123e84 Add _xmlplus to the demandimport blacklist. (HGCIA was failing to load.) 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', 'fcntl', 'win32com.gen_py'] +ignore = ['_hashlib', '_xmlplus', 'fcntl', 'win32com.gen_py'] def enable(): "enable global demand-loading of modules"