Tagged Questions
7
votes
2answers
347 views
documenting class attributes
I'm writing a lightweight class whose attributes are intended to be publicly accessible, and only sometimes overridden in specific instantiations. There's no provision in the Python language for ...
6
votes
2answers
145 views
Class attribute evaluation and generators
How exactly does Python evaluate class attributes? I've stumbled across an interesting quirk (in Python 2.5.2) that I'd like explained.
I have a class with some attributes that are defined in terms ...
3
votes
4answers
152 views
Class attributes with a “calculated” name
When defining class attributes through "calculated" names, as in:
class C(object):
for name in (....):
exec("%s = ..." % (name,...))
is there a different way of handling the numerous ...
2
votes
3answers
85 views
why superclass attributes are not available in the current class' namespace?
Example:
class A:
a = 1
class B(A):
b = 2
y = b # works fine
x = a # NameError: name 'a' is not defined
x = A.a # works fine
z = B()
z.a # works fine
B.a # works fine
Why is x ...
2
votes
2answers
51 views
Python paradigm for “derived fields”/“class attributes from calculations”
I have a class that, let's say, computes a person's insurance risk, and a few other variables are computed during computation. I will need access to the risk and the other variables later.
class ...
2
votes
2answers
116 views
Python - Referencing class attribute from another class attribute
In python, I want to have a class attribute which is a dictionary with initialized values.
I wrote the code like the below.
class MetaDataElement:
(MD_INVALID, MD_CATEGORY, MD_TAG) = range(3)
...
2
votes
4answers
227 views
Dynamically create class attributes
I need to dynamically create class attributes from a DEFAULTS dictionary.
defaults = {
'default_value1':True,
'default_value2':True,
'default_value3':True,
}
class Settings(object):
...
2
votes
2answers
678 views
Redirecting function definitions in python
This is a very contrived example as it's not easy to explain the context in which I have ended up implementing this solution. However, if anyone can answer why this particular peculiarity happens, I'd ...
1
vote
2answers
69 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 ...
1
vote
6answers
176 views
Python and object/class attrs - what's going on?
Can someone explain why Python does the following?
>>> class Foo(object):
... bar = []
...
>>> a = Foo()
>>> b = Foo()
>>> a.bar.append(1)
>>> b.bar
[1]
...
1
vote
3answers
229 views
Setting attributes of a class during construction from **kwargs
Python noob here,
Currently I'm working with SQLAlchemy, and I have this:
from __init__ import Base
from sqlalchemy.schema import Column, ForeignKey
from sqlalchemy.types import Integer, String
from ...
1
vote
3answers
816 views
Python: Inheritance of a class attribute (list)
inheriting a class attribute from a super class and later changing the value for the subclass works fine:
class Unit(object):
value = 10
class Archer(Unit):
pass
print Unit.value
print ...
1
vote
1answer
104 views
Redirecting function definitions in python
Pointing the class method at the instance method is clearly causing problems:
class A(dict):
def __getitem__(self, name):
return dict.__getitem__(self, name)
class B(object):
def ...
0
votes
2answers
364 views
Remove class attribute in inherited class Python
Consider such code:
class A ():
name = 7
description = 8
color = 9
class B(A):
pass
Class B now has (inherits) all attributes of class A. For some reason I want B not to inherit ...