Lichen

tests/exceptions.py

336:8c75cdf1a764
2016-12-06 Paul Boddie Introduced stream classes employing C-level FILE pointers, changing the sys stdin, stdout and stderr objects to be instances of these stream classes. Added fread and fwrite support to the native functions. Added support for raising EOFError.
     1 # Raise an instance of TypeError.     2      3 try:     4     raise TypeError()     5 except TypeError, exc:     6     print "Handled", exc     7      8 # Raise TypeError, causing instantiation.     9     10 try:    11     raise TypeError    12 except TypeError, exc:    13     print "Handled", exc