On Thu, Jul 29, 2010 at 4:24 PM, Nitin Kumar <[email protected]> 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
[email protected]
http://mail.python.org/mailman/listinfo/bangpypers
