simplify

tests/raise.py

18:af353c35b70b
2006-07-17 paulb Made function subprogram names originate from the AST nodes which defined them. Introduced proper class definition subprograms, along with separate structure nodes.
     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