commit | 8b2cbfd180a6bb03e807565a3dcc8a03302c2fc4 | [log] [tgz] |
---|---|---|
author | Armin Rigo <arigo@tunes.org> | Sat Aug 07 21:27:43 2004 +0000 |
committer | Armin Rigo <arigo@tunes.org> | Sat Aug 07 21:27:43 2004 +0000 |
tree | f3126e143e49c8d752e9d0dc87dde066dea37726 | |
parent | e6e77e5fe74289af8afe653ea426bcf966afff89 [diff] |
Let's not use string exceptions any more.
diff --git a/Lib/test/test_signal.py b/Lib/test/test_signal.py index 5c11322..042cfa9 100644 --- a/Lib/test/test_signal.py +++ b/Lib/test/test_signal.py
@@ -29,7 +29,8 @@ if verbose: print "handlerA", args -HandlerBCalled = "HandlerBCalled" # Exception +class HandlerBCalled(Exception): + pass def handlerB(*args): if verbose: