switching an instance variable between a property and a normal value
Robert Brewer
fumanchu at amor.org
Fri Jan 7 16:23:26 EST 2005
More information about the Python-list mailing list
Fri Jan 7 16:23:26 EST 2005
- Previous message (by thread): switching an instance variable between a property and a normal value
- Next message (by thread): switching an instance variable between a property and a normal value
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Steven Bethard wrote: > I'd like to be able to have an instance variable that can > sometimes be > accessed as a property, and sometimes as a regular value, > e.g. something > like: ... > py> c.x is c.x # I'd like this to be False You'd like 'c.x is c.x' to be FALSE? You can't be serious. Must be a typo. If you want C._x to return something other than the property descriptor, you can. Grab the sample code for Property from http://users.rcn.com/python/download/Descriptor.htm#properties and modify the __get__ method: def __get__(self, obj, objtype=None): if obj is None: return self # Return whatever you like here if self.fget is None: raise AttributeError, "unreadable attribute" return self.fget(obj) That might be one way to get what you want. Robert Brewer MIS Amor Ministries fumanchu at amor.org
- Previous message (by thread): switching an instance variable between a property and a normal value
- Next message (by thread): switching an instance variable between a property and a normal value
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list