vote up 3 vote down star

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

flag

1 Answer

vote up 10 vote down check

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|flag
+1, Beat me to it :) – Kiv Feb 27 at 14:11
-1: forget to quote the documentation: docs.python.org/library/functions.html#property/… – S.Lott Feb 27 at 14:28

Your Answer

Get an OpenID
or

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