Lichen

Annotated tests/exceptions.py

585:65cadf3264bc
2017-02-13 Paul Boddie Fixed str_add invocations for Unicode objects. attr-strvalue-without-size
paul@321 1
# Raise an instance of TypeError.
paul@321 2
paul@321 3
try:
paul@321 4
    raise TypeError()
paul@321 5
except TypeError, exc:
paul@321 6
    print "Handled", exc
paul@321 7
paul@321 8
# Raise TypeError, causing instantiation.
paul@321 9
paul@321 10
try:
paul@321 11
    raise TypeError
paul@321 12
except TypeError, exc:
paul@321 13
    print "Handled", exc