]> granicus.if.org Git - python/commitdiff
The "user" module cannot reasonably be tested. Moved to the end (and
authorFred Drake <fdrake@acm.org>
Mon, 22 Jan 2001 19:38:37 +0000 (19:38 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 22 Jan 2001 19:38:37 +0000 (19:38 +0000)
commented it out), and added an explanation as to *why*.

Added period to docstring.

Lib/test/test_sundry.py

index 485a691affaaff6fdda131b9de655f70773909d7..a2843a7fc73175627adad44845af87941645e09e 100644 (file)
@@ -1,4 +1,4 @@
-"""Do a minimal test of all the modules that aren't otherwise tested"""
+"""Do a minimal test of all the modules that aren't otherwise tested."""
 
 import BaseHTTPServer
 import CGIHTTPServer
@@ -85,9 +85,13 @@ import test
 import toaiff
 #import tzparse
 import urllib2
-import user
 import uu
 import webbrowser
 import whichdb
 import xdrlib
 import xml
+
+# Can't test the "user" module -- if the user has a ~/.pythonrc.py, it
+# can screw up all sorts of things (esp. if it prints!).
+#
+#import user