2017-03-20 | Paul Boddie | file changeset files shortlog | Added the context identity to the AttrResult string representation. |
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 |