diff options
author | Skip Montanaro <skip@pobox.com> | 2001-02-15 22:15:14 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-02-15 22:15:14 (GMT) |
commit | 0de65807e6bdc5254f5a7e99b2f39adeea6b883b (patch) | |
tree | 914e04ae2a3d31caf9c9731825970dd45c754378 /Lib/test/test___all__.py | |
parent | 04f1d37471d6dde302acedf56ee543fa827c7f29 (diff) | |
download | cpython-0de65807e6bdc5254f5a7e99b2f39adeea6b883b.zip cpython-0de65807e6bdc5254f5a7e99b2f39adeea6b883b.tar.gz cpython-0de65807e6bdc5254f5a7e99b2f39adeea6b883b.tar.bz2 |
bunch more __all__ lists
also modified check_all function to suppress all warnings since they aren't
relevant to what this test is doing (allows quiet checking of regsub, for
instance)
Diffstat (limited to 'Lib/test/test___all__.py')
-rw-r--r-- | Lib/test/test___all__.py | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Lib/test/test___all__.py b/Lib/test/test___all__.py index 875d99d..b2ea498 100644 --- a/Lib/test/test___all__.py +++ b/Lib/test/test___all__.py @@ -2,6 +2,9 @@ from test_support import verify, verbose import sys def check_all(modname): + import warnings + warnings.filterwarnings("ignore", "", DeprecationWarning, modname) + names = {} try: exec "import %s" % modname in names @@ -124,4 +127,30 @@ check_all("pty") check_all("py_compile") check_all("pyclbr") check_all("quopri") +check_all("random") +check_all("re") +check_all("reconvert") +check_all("regex_syntax") +check_all("regsub") +check_all("repr") +check_all("rexec") +check_all("rfc822") +check_all("rlcompleter") check_all("robotparser") +check_all("sched") +check_all("sgmllib") +check_all("shelve") +check_all("shlex") +check_all("shutil") +check_all("smtpd") +check_all("smtplib") +check_all("sndhdr") +check_all("socket") +check_all("sre") +check_all("sre_compile") +check_all("sre_constants") +check_all("sre_parse") +check_all("stat") +check_all("stat_cache") +check_all("statvfs") +check_all("string") |