vote up 3 vote down star
1

In C++ you can disable a function in parent's class by declaring it as private in the child class. How can this be done in Python? I.E. How can I hide parent's function from child's public interface?

flag

4 Answers

vote up 8 vote down check

There really aren't any true "private" attributes or methods in Python. One thing you can do is simply override the method you don't want in the subclass, and raise an exception:

>>> class Foo( object ):
...     def foo( self ):
...     	print 'FOO!'
...     	
>>> class Bar( Foo ):
...     def foo( self ):
...     	raise AttributeError( "'Bar' object has no attribute 'foo'" )
...     
>>> b = Bar()
>>> b.foo()
Traceback (most recent call last):
  File "<interactive input>", line 1, in <module>
  File "<interactive input>", line 3, in foo
AttributeError: 'Bar' object has no attribute 'foo'
link|flag
>There really aren't any true "private" attributes or methods in Python. That is why I didn't ask how to make them private, but how to 'remove' them from the interface. Hope that the edited version is more accurate – bgbg Oct 23 '08 at 23:03
1  
I agree that NotImplementedError is probably the best one to use, but if you really wanted to match not having the inherited method at all, raise AttributeError instead (which is what you'd get if the parent method didn't exist). – Tony Meyer Oct 24 '08 at 10:37
Good point regarding AttributeError. I will update my example. – kurosch Oct 24 '08 at 15:37
1  
This doesn't do what you want -- an AttributeError will only be raised if the foo method is /invoked/ -- getattr(b, 'foo') still returns a method object (an attribute!). – cdleary Oct 24 '08 at 23:39
vote up 1 vote down
class X(object):
    def some_function(self):
        do_some_stuff()

class Y(object):
    some_function = None

This may lead to some nasty and hard to find exceptions being thrown though, so you might try this:

class X(object):
    def some_function(self):
        do_some_stuff()

class Y(object):
    def some_function(self):
        raise NotImplementedError("function some_function not implemented")
link|flag
vote up -1 vote down

In my opinion the only right way to do this is by raising an AttributeError.

Anyways there is a no-sense (at least for me) doing some tests:

class foo(object):
    def bar(self):
        return 'FooBar'

class fuu(foo):
    def __init__(self):
        self.bar = None # I overwrite
        print self.bar, 1 # Proof I overwrited
        del self.bar # I delete...
        print self.bar, 2 # it is again there ?!?


a = foo()
print a.bar(),3

print

a = fuu()

print
print a.bar(),4

It should raise an attribute error (for me) but it doesn't, it prints:

FooBar 3

None 1
<bound method fuu.bar of <__main__.fuu object at 0x00CF8250>> 2

FooBar 4

After I overwrite, then delete, it still searches for the parent attribute... :O

link|flag
This is because it searches the class hierarchy looking for a method to resolve (see documentation on MRO if you're interested in the specifics). The reference to the method isn't present in the subclass at all after you delete it, so it keeps looking up the hierarchy. – cdleary Dec 31 at 10:41
vote up 3 vote down

kurosch's method of solving the problem isn't quite correct, because you can still use b.foo without getting an AttributeError. If you don't invoke the function, no error occurs. Here are two ways that I can think to do this:

import doctest

class Foo(object):
    """
    >>> Foo().foo()
    foo
    """
    def foo(self): print 'foo'
    def fu(self): print 'fu'

class Bar(object):
    """
    >>> b = Bar()
    >>> b.foo()
    Traceback (most recent call last):
    ...
    AttributeError
    >>> hasattr(b, 'foo')
    False
    >>> hasattr(b, 'fu')
    True
    """
    def __init__(self): self._wrapped = Foo()

    def __getattr__(self, attr_name):
        if attr_name == 'foo': raise AttributeError
        return getattr(self._wrapped, attr_name)

class Baz(Foo):
    """
    >>> b = Baz()
    >>> b.foo() # doctest: +ELLIPSIS
    Traceback (most recent call last):
    ...
    AttributeError...
    >>> hasattr(b, 'foo')
    False
    >>> hasattr(b, 'fu')
    True
    """
    foo = property()

if __name__ == '__main__':
    doctest.testmod()

Bar uses the "wrap" pattern to restrict access to the wrapped object. Martelli has a good talk dealing with this. Baz uses the property built-in to implement the descriptor protocol for the attribute to override.

link|flag
Well, sure, in my answer it's still "visible", but you can't "use" it per se because it will raise the exception. A valid point, though. – kurosch Oct 27 '08 at 20:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.