Let's not use string exceptions any more.

This commit is contained in:
Armin Rigo 2004-08-07 21:27:43 +00:00
parent e6e77e5fe7
commit 8b2cbfd180

View file

@ -29,7 +29,8 @@ def handlerA(*args):
if verbose:
print "handlerA", args
HandlerBCalled = "HandlerBCalled" # Exception
class HandlerBCalled(Exception):
pass
def handlerB(*args):
if verbose: