diff options
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_support.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 3839c79..5dec21b 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -1,6 +1,7 @@ # Python test set -- supporting definitions. -TestFailed = 'test_support -- test failed' # Exception +class TestFailed(Exception): + pass verbose = 1 # Flag set to 0 by regrtest.py |