From f8078839f5984027d872179e04b974aa96d46090 Mon Sep 17 00:00:00 2001 From: Augie Fackler Date: Tue, 1 Mar 2011 23:35:22 -0600 Subject: [PATCH] demandimport: blacklist rfc822 and mimetools to prevent spurious warnings --- mercurial/demandimport.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mercurial/demandimport.py b/mercurial/demandimport.py index 4f5d71e726..030d0ecbfd 100644 --- a/mercurial/demandimport.py +++ b/mercurial/demandimport.py @@ -137,6 +137,8 @@ ignore = [ # raise ImportError if x not defined '__main__', '_ssl', # conditional imports in the stdlib, issue1964 + 'rfc822', + 'mimetools', ] def enable():