Tighten up some warning filters, and break some dependencies on the

order in which the tests are normally run.
This commit is contained in:
Tim Peters 2002-04-16 01:27:44 +00:00
parent 50ac30ee01
commit d392506c43
9 changed files with 34 additions and 16 deletions

View file

@ -2,9 +2,12 @@ from test_support import verify, verbose
import sys
import warnings
warnings.filterwarnings("ignore", ".* 'pre' .*", DeprecationWarning)
warnings.filterwarnings("ignore", ".* regsub .*", DeprecationWarning)
warnings.filterwarnings("ignore", ".* statcache .*", DeprecationWarning)
warnings.filterwarnings("ignore", ".* 'pre' .*", DeprecationWarning,
r'pre$')
warnings.filterwarnings("ignore", ".* regsub .*", DeprecationWarning,
r'^regsub$')
warnings.filterwarnings("ignore", ".* statcache .*", DeprecationWarning,
r'statcache$')
def check_all(modname):
names = {}