> classname.functionname(objectname) Do you mean something like this?
class myclass:
@staticmethod
def myfunction(myobject): pass
myobject = None
myclass.myfunction(myobject)
If so, then you want to check the staticmethod decorator, described here:
http://docs.python.org/lib/built-in-funcs.html
David.
--
http://mail.python.org/mailman/listinfo/python-list
