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?
|
1
|
|
|
|
|
|
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:
|
||||||||||||
|
|
|
This may lead to some nasty and hard to find exceptions being thrown though, so you might try this:
|
|||
|
|
|
|
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:
It should raise an attribute error (for me) but it doesn't, it prints:
After I overwrite, then delete, it still searches for the parent attribute... :O |
||
|
|
|
kurosch's method of solving the problem isn't quite correct, because you can still use
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. |
||
|
