simplify

tests/raise.py

21:2cb628fe771d
2006-07-20 paulb Added some global name support: transformation of loads and stores to explicit global operations; a test of global declarations. Fixed dispatching in the annotator so that replaced nodes are incorporated. Removed the parent namespace in annotate.Namespace, adding also specific find methods for loads and stores. Added some support for parameters in the annotator, although actual namespace population will only take place in the context of an active invocation.
     1 try:     2     raise Test, x     3 except:     4     pass     5 try:     6     raise Test(x)     7 except:     8     pass     9 try:    10     raise Test, x, tb    11 except:    12     pass