Whats the point of object?  How do I actually use it.  I'm not understanding correctly from the python site located:<br><a href="http://www.python.org/download/releases/2.2.3/descrintro/">http://www.python.org/download/releases/2.2.3/descrintro/
</a><br><pre>class C(object):<br><br>    def __init__(self):<br>        self.__x = 0<br><br>    def getx(self):<br>        return self.__x<br><br>    def setx(self, x):<br>        if x < 0: x = 0<br>        self.__x = x
</pre><br>