simplify

Annotated tests/class.py

42:df3d2b28e2ae
2006-08-09 paulb Added tracing of the system state.
paulb@14 1
class A:
paulb@14 2
    x = 123
paulb@14 3
    def m(self, x):
paulb@14 4
        self.x = x
paulb@14 5
a = A()
paulb@23 6
y = A.x
paulb@23 7
z = a.x