5
votes
2answers
56 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 …
0
votes
5answers
78 views
Possibility of Implementing Minimize-to-Tray in C# in an Attribute
Attributes are awesome. But is it possible to create a C# attribute class that, when tagged, makes your application minimize to the system tray?
Technically, the attribute would need to be placed on …
0
votes
2answers
50 views
Comments within style= attributes - safe?
I am working on a CMS that generates CSS "style='xyz'" statements from user input.
The user input will be validated but as an additional safeguard, I want to check the validity of the values on …
3
votes
7answers
313 views
Real world use of custom .NET attributes
What kind of things have you used custom .NET attributes for in the real world?
I've read several articles about them, but I have never used custom attributes.
I feel like I might be overlooking …
0
votes
0answers
15 views
Annoying: VS2008 combines class attributes
On some occasions (e.g. suppress warning), VS generates class attributes. The problem I'm facing is about the way these attributes are added.
When advising Visual Studio to suppress the warning w1 …
3
votes
4answers
96 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
2answers
154 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
1answer
85 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 …
