Lichen

Annotated tests/exceptions.py

775:c8ba74a474eb
2017-03-25 Paul Boddie Fixed method name.
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