simplify

tests/if.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 if a:     2     x = 1     3 elif b:     4     x = 2     5 else:     6     x = 3