testall.py 274 B

12345678910
  1. # Backward compatibility -- you should use regrtest instead of this module.
  2. from warnings import warnpy3k
  3. warnpy3k("the test.testall module has been removed in Python 3.0",
  4. stacklevel=2)
  5. del warnpy3k
  6. import sys, regrtest
  7. sys.argv[1:] = ["-vv"]
  8. regrtest.main()