# HG changeset patch # User Dirkjan Ochtman # Date 1268147037 -3600 # Node ID 30553ac3e35569dc7798bdddc478ed1680fda4cb # Parent 1037bd445768def3471bcc4a035542ac57a4c600 demandimport: blacklist _ssl (issue1964) diff -r 1037bd445768 -r 30553ac3e355 mercurial/demandimport.py --- a/mercurial/demandimport.py Wed Jan 20 20:23:36 2010 -0500 +++ b/mercurial/demandimport.py Tue Mar 09 16:03:57 2010 +0100 @@ -133,6 +133,7 @@ # setuptools' pkg_resources.py expects "from __main__ import x" to # raise ImportError if x not defined '__main__', + '_ssl', # conditional imports in the stdlib, issue1964 ] def enable():