summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_sundry.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-01-22 19:38:37 (GMT)
committerFred Drake <fdrake@acm.org>2001-01-22 19:38:37 (GMT)
commitd74804db417be16720a5f66bdc9020dd7dd999ac (patch)
tree8e363f14f35a766a12474d5b3403d83c5d8c3c56 /Lib/test/test_sundry.py
parent7f9b5e014ba2f75c76c2564b2f46367fccf813d0 (diff)
downloadcpython-d74804db417be16720a5f66bdc9020dd7dd999ac.zip
cpython-d74804db417be16720a5f66bdc9020dd7dd999ac.tar.gz
cpython-d74804db417be16720a5f66bdc9020dd7dd999ac.tar.bz2
The "user" module cannot reasonably be tested. Moved to the end (and
commented it out), and added an explanation as to *why*. Added period to docstring.
Diffstat (limited to 'Lib/test/test_sundry.py')
-rw-r--r--Lib/test/test_sundry.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py
index 485a691..a2843a7f 100644
--- a/Lib/test/test_sundry.py
+++ b/Lib/test/test_sundry.py
@@ -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