Mercurial > hg
changeset 3927:a8bd7280330f
demandimport: blacklist _hashlib again (imported in ImportError try block)
author | Brendan Cully <brendan@kublai.com> |
---|---|
date | Sun, 17 Dec 2006 18:45:46 -0800 |
parents | de6ae8f016af |
children | 4df475e22248 |
files | mercurial/demandimport.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/demandimport.py Sun Dec 17 18:34:42 2006 -0800 +++ b/mercurial/demandimport.py Sun Dec 17 18:45:46 2006 -0800 @@ -103,7 +103,7 @@ setattr(mod, x, _demandmod(x, mod.__dict__, mod.__dict__)) return mod -ignore = [] +ignore = ['_hashlib'] def enable(): "enable global demand-loading of modules"