simplify

tests/class.py

76:f22392f365a6
2006-10-10 paulb Fixed locals absence test.
     1 class A:     2     x = 123     3     def m(self, x):     4         self.x = x     5 a = A()     6 y = A.x     7 z = a.x