simplify

tests/class.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 class A:     2     x = 123     3     def m(self, x):     4         self.x = x     5 a = A()