Is it normal for Wing to trap the following exception, when it is set
to ImmediatelyIfAppear Unhandled ?
I was expecting that Wing would not trap the exception, because "it
is handled".
def func(arg):
assert type(arg) is types.IntType, "Message"
return
try:
x= func('ABC')
except AssertionError:
# do something else