# HG changeset patch # User Brendan Cully # Date 2006-12-18 02:45:46 # Node ID a8bd7280330f2fe132d5c983387e41e3916cfe37 # Parent de6ae8f016afae10f71dd724a0af81ab321fb7c7 demandimport: blacklist _hashlib again (imported in ImportError try block) 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 = [] +ignore = ['_hashlib'] def enable(): "enable global demand-loading of modules"