On Thu, Jul 29, 2010 at 4:24 PM, Nitin Kumar <nitin.n...@gmail.com> wrote:
> fine, but isn't there any way to hide few function of base class into
> derived one???

You can try obscuring it:

class y(x):
   def __init__(self):
       x.__init__(self)
       self.A = None

Cheers,
-MD.
_______________________________________________
BangPypers mailing list
BangPypers@python.org
http://mail.python.org/mailman/listinfo/bangpypers

Reply via email to