4
votes
1answer
28 views

Is there a succint way to get all the desciptors defined in a python class?

Is there a simple method for finding all of the descriptors in a class type? If I have this code: class Descriptor(object): def __init__(self): self._name = '' def __get__(self, ...
1
vote
1answer
79 views

assigning a variable upon binding a relationship in sqlalchemy

I have the following two classes: class user(Base): .... id=Column(Integer, primary_key=True) address=relationship('Address',backref='user') class Address(Base): ... ...
1
vote
2answers
247 views

Python descriptor vs property [duplicate]

Possible Duplicate: When and why might I assign an instance of a descriptor class to a class attribute in Python rather than use a property? I'm confused as to when to use a property vs a ...
5
votes
4answers
192 views

How to implement __iadd__ for a Python property

I'm trying to create a Python property where in-place adding is handled by a different method than retrieving the value, adding another value and reassigning. So, for a property x on an object o, o.x ...
0
votes
2answers
57 views

Property Replacement in Maven Site Content

I'm generating maven site content using the site plugin. I want to have a little table that shows my maven group id, artifact id, parent info, etc on the module. I don't see a plugin for it, so I ...
8
votes
2answers
330 views

Using a class instance as a class attribute, descriptors, and properties

I have recently stated trying to use the newer style of classes in Python (those derived from object). As an excersise to familiarise myself with them I am trying to define a class which has a number ...
2
votes
2answers
490 views

Python custom property with setter

I am looking for a pure python implementation of python property builtin to understand how does the initialization works. I have found many that deal with the descriptor interface (get, set) but none ...
0
votes
1answer
45 views

Why isn't this classprop implementation working?

Based on a question I previously asked, I tried to come up with a class property that would allow setting as well as getting. So I wrote this and put it in a module util: class classprop(object): ...
1
vote
2answers
90 views

Implementing class descriptors by subclassing the `type` class

I'd like to have some data descriptors as part of a class. Meaning that I'd like class attributes to actually be properties, whose access is handled by class methods. It seems that Python doesn't ...
15
votes
4answers
6k views

Python: how to call a property of the base class if this property is being overwritten in the derived class?

I'm changing some classes of mine from an extensive use of getters and setters to a more pythonic use of properties. But now I'm stuck because some of my previous getters or setters would call the ...