changeset 14976:04a950b1c2ad

demandimport: blacklist rfc822 and mimetools to prevent spurious warnings
author Augie Fackler <durin42@gmail.com>
date Tue, 01 Mar 2011 23:35:22 -0600
parents b64538363dbe
children 1dbd42a02153
files mercurial/demandimport.py
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/demandimport.py	Mon Jul 25 20:46:30 2011 -0500
+++ b/mercurial/demandimport.py	Tue Mar 01 23:35:22 2011 -0600
@@ -137,6 +137,8 @@
     # raise ImportError if x not defined
     '__main__',
     '_ssl', # conditional imports in the stdlib, issue1964
+    'rfc822',
+    'mimetools',
     ]
 
 def enable():