1 """Do a minimal test of all the modules that aren't otherwise tested."""
4 warnings
.filterwarnings('ignore', r
".*posixfile module",
5 DeprecationWarning, 'posixfile$')
6 warnings
.filterwarnings('ignore', r
".*statcache module",
7 DeprecationWarning, 'statcache$')
8 warnings
.filterwarnings('ignore', r
".*'re' module",
9 DeprecationWarning, 'pre$')
11 from test
.test_support
import verbose
16 import SimpleHTTPServer
29 import curses
# not available on Windows
32 print "skipping curses"
74 import rlcompleter
# not available on Windows
77 print "skipping rlcompleter"
98 # Can't test the "user" module -- if the user has a ~/.pythonrc.py, it
99 # can screw up all sorts of things (esp. if it prints!).