class BoxedInt(object): def __init__(self, v): self.val = v x = BoxedInt(0) def foo(): x.val = x.val + 1 print x.val