simplify

tests/class.py

16:c227a822ddc7
2006-07-15 paulb Added annotation notes.
     1 class A:     2     x = 123     3     def m(self, x):     4         self.x = x     5 a = A()