Add dead imports of modules that are "magically" imported.
diff --git a/Lib/codecs.py b/Lib/codecs.py
index b3c2f71..ebcec1c 100644
--- a/Lib/codecs.py
+++ b/Lib/codecs.py
@@ -575,6 +575,12 @@
             m[v] = None
     return m
 
+# Tell modulefinder that using codecs probably needs the encodings
+# package
+_false = 0
+if _false:
+    import encodings
+
 ### Tests
 
 if __name__ == '__main__':
diff --git a/Lib/xml/sax/__init__.py b/Lib/xml/sax/__init__.py
index 0375e5d..f119d84 100644
--- a/Lib/xml/sax/__init__.py
+++ b/Lib/xml/sax/__init__.py
@@ -53,6 +53,11 @@
 
 default_parser_list = ["xml.sax.expatreader"]
 
+# tell modulefinder that importing sax potentially imports expatreader
+_false = 0
+if _false:
+    import xml.sax.expatreader
+
 import os, string, sys
 if os.environ.has_key("PY_SAX_PARSER"):
     default_parser_list = string.split(os.environ["PY_SAX_PARSER"], ",")