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

Is it possible in python to create a property with the same name as the member variable name of the class. e.g.

Class X:
    ...
    self.i = 10 # marker
    ...
    property(fget = get_i, fset = set_i)

Please tell me how I can do so. Because if I do so, for the statement at marker I get stack overflow for the assingm

link|improve this question

feedback

1 Answer

up vote 14 down vote accepted

Is it possible in python to create a property with the same name as the member variable name

No. properties, members and methods all share the same namespace.

the statement at marker I get stack overflow

Clearly. You try to set i, which calls the setter for property i, which tries to set i, which calls the setter for property i... ad stackoverflowum.

The usual pattern is to make the backend value member conventionally non-public, by prefixing it with ‘_’:

class X(object):
    def get_i(self):
        return self._i
    def set_i(self, value):
        self._i= value
    i= property(get_i, set_i)

Note you must use new-style objects (subclass ‘object’) for ‘property’ to work properly.

link|improve this answer
+1, Beat me to it :) – Kiv Feb 27 '09 at 14:11
1  
-1: forget to quote the documentation: docs.python.org/library/functions.html#property – S.Lott Feb 27 '09 at 14:28
+1 for "ad stackoverflowum" :) – Sven Marnach Feb 9 '11 at 14:07
feedback

Your Answer

 
or
required, but never shown

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