Hi

I have a python class, which i want to wrap in a COM class

Can the COM class inherit all the methods and attributes and thus be
used by a COM client?
example:


class A:
    __init__(self, Param):
       self.Param = Param

class COMA(A):
   _public_attributes_ = ["Param"]
   def __init__(self, Param):
       A.__init__(self, Param)

thanks in advance

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to