Repair the test (adding a docstring to the module type changed the
docstring for an uninitialized module object).
diff --git a/Lib/test/test_module.py b/Lib/test/test_module.py
index 566bb89..f3bf3d8 100644
--- a/Lib/test/test_module.py
+++ b/Lib/test/test_module.py
@@ -14,7 +14,7 @@
     pass
 else:
     raise TestFailed, "__name__ = %s" % repr(s)
-vereq(foo.__doc__, None)
+vereq(foo.__doc__, module.__doc__)
 
 # Regularly initialized module, no docstring
 foo = module("foo")