Tagged Questions
The setattr tag has no wiki summary.
14
votes
4answers
2k views
How do I call setattr() on the current module?
What do I pass as the first parameter "object" to the function setattr(object, name, value), to set variables on the current module?
For example:
setattr(object, "SOME_CONSTANT", 42);
giving the ...
13
votes
3answers
193 views
Python: inconsistence in the way you define the function __setattr__?
Consider this code:
class Foo1(dict):
def __getattr__(self, key): return self[key]
def __setattr__(self, key, value): self[key] = value
class Foo2(dict):
__getattr__ = dict.__getitem__
...
5
votes
2answers
234 views
How to I properly override __setattr__ and __getattribute__ on new-style classes in Python?
I want to override my Python class's __getattribute__ and __setattr__ methods. My use case is the usual one: I have a few special names that I want to handle, and I want the default behavior for ...
3
votes
2answers
185 views
Setting an class attribute with a given name in python while defining the class
I am trying to do something like this:
property = 'name'
value = Thing()
class A:
setattr(A, property, value)
other_thing = 'normal attribute'
def __init__(self, etc)
#etc..........
But ...
3
votes
8answers
2k views
Python __init__ setattr on arguments?
It seems that often __init__ methods are similar to this:
def __init__(self, ivar1, ivar2, ivar3):
self.ivar1 = ivar1
self.ivar2 = ivar2
self.ivar3 = ivar3
Is there someway to turn the ...
2
votes
1answer
48 views
Python: How to return an instance of an object along with attributes assigned with setattr
I am still very new to python, but I need to interface with some software that is written as a bunch of python modules (.py files in case I incorrectly identified them as "modules.") This program has ...
2
votes
4answers
301 views
Accessing list items with getattr/setattr in Python
Trying to access/assign items in a list with getattr and setattr funcions in Python.
Unfortunately there seems to be no way of passing the place in the list index along with the list name.
Here's some ...
2
votes
2answers
68 views
need a simple way to add meta information/class to a python list/tuple variable?
All,
I want simple meta information to be enclosed on an list object, see below code.
>>> a = []
>>> a.foo = 100
Traceback (most recent call last):
File "<interactive ...
2
votes
2answers
170 views
Why does the “name” parameter to __setattr__ include the class, but __getattr__ doesn't?
The following code:
class MyClass():
def test(self):
self.__x = 0
def __setattr__(self, name, value):
print name
def __getattr__(self, name):
print name
...
2
votes
3answers
195 views
How to create a property with its name in a string?
Using Python I want to create a property in a class, but having the name of it in a string. Normally you do:
blah = property(get_blah, set_blah, del_blah, "bleh blih")
where get_, set_ and del_blah ...
1
vote
2answers
113 views
Why does setattr fail on a bound method
In the following, setattr succeeds in the first invocation, but fails in the second, with:
AttributeError: 'method' object has no attribute 'i'
Why is this, and is there a way of setting an ...
1
vote
1answer
108 views
What's the difference between setattr() and object.__setattr__()?
I know that you can't call object.__setattr__ on objects not inherited from object, but is there anything else that is different between the two? I'm working in Python 2.6, if this matters.
1
vote
1answer
170 views
Dynamic Instance variables within Class Scope
I've got a class that is a descendant of SQLAlchemy's declarative base. I need to write a bridge object that will translate between the declarative base and another system I am running, but I want the ...
1
vote
1answer
173 views
Setting Property via a String
I'm trying to set a Python class property outside of the class via the setattr(self, item, value) function.
class MyClass:
def getMyProperty(self):
return self.__my_property
def ...
1
vote
1answer
203 views
setattr() not setting
I have a class (bot), which has an attribute "health"; since there are a lot of parameters to this class, and I wished for the user to input a lot of them, I chose to loop through a dict of ...
1
vote
1answer
125 views
Python: Inject attribute into object created by C library
I'm trying to inject an attribute into lxml.etree._Element, but as that module is completely implemented in C, setattr fails:
Traceback (most recent call last):
[...]
...
1
vote
3answers
147 views
Is it possible to dynamically name attributes in an App Engine Model?
setattr allows you to dynamically name attributes in Python classes. I'm trying to do something similar with an App Engine Model:
class MyModel(db.Model):
def __init__(self, *args, **kwargs):
...
1
vote
1answer
232 views
create a class attribute without going through __setattr__
What I have below is a class I made to easily store a bunch of data as attributes.
They wind up getting stored in a dictionary.
I override __getattr__ and __setattr__ to store and retrieve the values ...
1
vote
3answers
59 views
Overridden attribute access does not work (as expected)
The main objective of the following module, is to provide a kind of "constant" semantics for some names.
class ConstantError(Exception):
def __init__(self, msg):
self._msg = msg
...
0
votes
1answer
113 views
Trying to dynaimcally create properties at runtime with Python using reflected data
So I'm trying to figure out if what I want to do is even possible. I am writing some test code for an application, and I have objects that contain properties representing some of the elements we have ...
0
votes
1answer
238 views
Jython 2.1 __getattr__
I am trying to implement a wrapper/proxy class for a java object (baseClient) in jython v2.1. Everything seems to be working ok except when the following statement is encountered:
if __client != None ...