Fix read_mime_types() so that it returns a dict as documented.
This fixes a bug reported as http://www.python.org/sf/661630,
which was introduced in the patch http://www.python.org/sf/554192.
diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py
index 846d56b..f1a1a3e 100644
--- a/Lib/mimetypes.py
+++ b/Lib/mimetypes.py
@@ -315,8 +315,8 @@
     except IOError:
         return None
     db = MimeTypes()
-    db.readfp(f)
-    return db.types_map
+    db.readfp(f, True)
+    return db.types_map[True]
 
 
 suffix_map = {