[Python-checkins] r54684 - python/trunk/Lib/test/test___all__.py (original) (raw)

collin.winter python-checkins at python.org
Wed Apr 4 20:16:27 CEST 2007


Author: collin.winter Date: Wed Apr 4 20:16:24 2007 New Revision: 54684

Modified: python/trunk/Lib/test/test___all__.py Log: Stop using test_support.verify().

Modified: python/trunk/Lib/test/test___all__.py

--- python/trunk/Lib/test/test___all__.py (original) +++ python/trunk/Lib/test/test___all__.py Wed Apr 4 20:16:24 2007 @@ -1,7 +1,5 @@ import unittest -from test import test_support

-from test.test_support import verify, verbose +from test.test_support import verbose, run_unittest import sys import warnings

@@ -22,15 +20,15 @@ # Silent fail here seems the best route since some modules # may not be available in all environments. return

@@ -181,7 +179,7 @@

def test_main():

if name == "main": test_main()



More information about the Python-checkins mailing list