up vote 5 down vote favorite
2
share [g+] share [fb]

How do I access a private attribute of a parent class from a subclass (without making it public)?

link|improve this question

73% accept rate
Do you mean protected, or private? Your question is different from your title ... – unwind Apr 28 '09 at 13:00
4  
Since protected and private don't mean much in Python, please provide actual code. – S.Lott Apr 28 '09 at 13:10
feedback

4 Answers

up vote 21 down vote accepted

My understanding of Python convention is

  • _member is protected
  • __member is private

Options for if you control the parent class

  • Make it protected instead of private since that seems like what you really want
  • Use a getter (@property def _protected_access_to_member...) to limit the protected access

If you don't control it

  • Undo the name mangling. If you dir(object) you will see names something like _Class__member which is what Python does to leading __ to "make it private". There isn't truly private in python. This is probably considered evil.
link|improve this answer
feedback

if the variable name is "__secret" and the class name is "MyClass" you can access it like this on an instance named "var"

var._MyClass__secret

The convention to suggest/emulate protection is to name it with a leading underscore: self._protected_variable = 10

Of course, anybody can modify it if it really wants.

link|improve this answer
feedback

Using @property and @name.setter to do what you want

e.g

class Stock(object):

    def __init__(self, stockName):

        # '_' is just a convention and does nothing
        self.__stockName  = stockName   # private now


    @property # when you do Stock.name, it will call this function
    def name(self):
        return self.__stockName

    @name.setter # when you do Stock.name = x, it will call this function
    def name(self, name):
        self.__stockName = name

if __name__ == "__main__":
      myStock = Stock("stock111")

      myStock.__stockName  # It is private. You can't access it.

      #Now you can myStock.name
      N = float(raw_input("input to your stock: " + str(myStock.name)+" ? "))
link|improve this answer
feedback

Make an accessor method, unless I am missing something:

def get_private_attrib(self):
  return self.__privateWhatever
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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