blob: 5b5cf01e81ffafe3e07284936340d202f7d4f051 [file] [log] [blame]
Guido van Rossum27e280d1997-03-07 21:05:43 +00001# Backward compatibility -- you should use regrtest instead of this module.
Brett Cannon3c759142008-05-09 05:25:37 +00002from warnings import warnpy3k
3warnpy3k("the test.testall module has been removed in Python 3.0",
4 stacklevel=2)
5del warnpy3k
6
7
Guido van Rossum27e280d1997-03-07 21:05:43 +00008import sys, regrtest
9sys.argv[1:] = ["-vv"]
10regrtest.main()