Tagged Questions
8
votes
2answers
377 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
153 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
1answer
28 views
How can I read the attributes assigned to the properties of a class?
Given the following class
Public Class Customer
Inherits XPBaseObject
Private _CustomerID As Integer = -1
<Key(True), _
Custom("AllowNull", "True"), _
Custom("AutoInc", ...
2
votes
3answers
93 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 ...
1
vote
1answer
316 views
Inheritable attributes in ruby classes
Greets to all!
I want to describe each kind of product by a class:
# Base product class
class BaseProduct
prop :name, :price # Common properties for all inheritable products
end
class Cellphone ...
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
3answers
238 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 ...