Tagged Questions
9
votes
4answers
2k 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 ...
7
votes
1answer
217 views
How is __slots__ implemented in Python?
How is __slots__ implemented in Python?
Is this exposed in the C interface?
How do I get __slots__ behaviour when defining a Python class in C via PyTypeObject?
6
votes
2answers
261 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 ...
6
votes
4answers
344 views
Static and instance methods in Python
Can I define a Python method to be both static and instance at the same time? Something like:
class C(object):
@staticmethod
def a(self, arg1):
if self:
blah
blah
...
6
votes
2answers
67 views
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 aware that a property is a descriptor, but are there specific examples of when using a descriptor class might be more advantageous, pythonic, or provide some benefit over using @property on a ...
5
votes
3answers
147 views
Programmatically generate methods for a class
I have about 20 methods to redirect to a wrapper method that takes the original method, and the rest of the arguments:
class my_socket(parent):
def _in(self, method, *args, **kwargs):
# ...
4
votes
2answers
68 views
Putting a function to a local namespace to speeding up access taking descriptors into account
I use numpy.random.normal function in a tough loop in a class.
class MyClass(MyBaseClass):
def run(self):
while True:
...
...
4
votes
4answers
242 views
Can a method be used as either a staticmethod or instance method?
I'd like to be able to do this:
class A(object):
@staticandinstancemethod
def B(self=None, x, y):
print self is None and "static" or "instance"
A.B(1,2)
A().B(1,2)
This seems like ...
4
votes
2answers
235 views
Using Python descriptors with slots
I want to be able use python descriptors in a class which has the slots optimization:
class C(object):
__slots__ = ['a']
a = MyDescriptor('a')
def __init__(self, val):
self.a ...
4
votes
1answer
203 views
add a decorate function to a class
I have a decorated function (simplified version):
class Memoize:
def __init__(self, function):
self.function = function
self.memoized = {}
def __call__(self, *args, **kwds):
...
4
votes
4answers
2k views
python, __slots__ and “attribute is read-only”
I want to create an object in python that have a few attributes and I want to protect myself from accidentally using wrong attribute name. The code is following:
class MyClass( object ) :
m = ...
3
votes
1answer
78 views
python3: bind method to class instance with .__get__(), it works but why?
I know if you want to add a method to a class instance you can't do a simple assignment like this:
>>> def print_var(self): # method to be added
print(self.var)
>>> class ...
3
votes
1answer
308 views
Python 2.6: How to access base class descriptor field hidden by derived class?
I have a descriptor storing data in host object's dictionary.
And I have fields of this descriptor in class hierarchy with the same name:
class ADescriptor(object):
def __init__(self, ...
3
votes
1answer
182 views
Difference between using __init__ and setting a class variable
I'm trying to learn descriptors, and I'm confused by objects behaviour - in the two examples below, as I understood __init__ they should work the same. Can someone unconfuse me, or point me to a ...
3
votes
2answers
208 views
Why does declaring a descriptor class in the __init__ function break the descriptor functionality?
In class B below I wanted the __set__ function in class A to be called whenever you assign a value to B().a . Instead, setting a value to B().a overwrites B().a with the value. Class C assigning to ...
2
votes
1answer
74 views
python class data descriptor list
I can't seem to figure out how to get a list of a classes data descriptors. Basically, I want to run some validation against the fields and unset fields. For instance:
class Field (object):
def ...
2
votes
2answers
90 views
How to tell python non-class objects from class objects
I am new to python. I think non-class objects do not have bases attribute whereas class objects do have it. But I am not sure. How does python\cpython checks if an object is non-class or class and ...
2
votes
3answers
361 views
python resettable memoization decorator
I'm attempting to build a decorator for an instance method of a class that will memoize the result. (This has been done a million times before) However, I'd like the option of being able to reset the ...
2
votes
1answer
387 views
How to create decorator for lazy initialization of a property
I want to create a decorator that works like a property, only it calls the decorated function only once, and on subsequent calls always return the result of the first call. An example:
def ...
2
votes
2answers
245 views
python descriptors sharing values across classes
A python descriptor that I'm working with is sharing its value across all instances of its owner class. How can I make each instance's descriptor contain its own internal values?
class Desc(object):
...
2
votes
5answers
2k views
Python: how to call a data member of the base class if it is being overwritten as a property in the derived class?
This question is similar to this other one, with the difference that the data member in the base class is not wrapped by the descriptor protocol.
In other words, how can I access a member of the base ...
2
votes
3answers
376 views
Why do managed attributes just work for class attributes and not for instance attributes in python?
To illustrate the question check the following code:
class MyDescriptor(object):
def __get__(self, obj, type=None):
print "get", self, obj, type
return self._v
def __set__(self, obj, ...
1
vote
2answers
105 views
Descriptor for lazy loading
I wanted to implement lazy loading of variables, but I seem to misunderstand descriptors a bit. I'd like to have object variables, which on first access will call the obj.load() function which will ...
1
vote
3answers
178 views
How to call methods on Python class descriptor objects?
I created a class String() with __get__(), __set__(), and a method to_db(); however, when I do name = String(), I can't do self.name.to_db() because it's calling to_db() on the value returned by ...
1
vote
1answer
95 views
Python: why can't descriptors be instance variables?
Say I define this descriptor:
class MyDescriptor(object):
def __get__(self, instance, owner):
return self._value
def __set__(self, instance, value):
self._value = value
...
1
vote
2answers
223 views
Get method wrapped in a descriptor with getattr
I have the following descriptor, which saves the configuration inside my class after a method which is annotated with @saveconfig is called:
class saveconfig(object):
def __init__(self, f):
...
1
vote
2answers
221 views
python protobufs - avoid the install step?
i'm writing a small python utility which will be consumed by moderately non-technical users and which needs to interface w/ some protobufs.
ideally, i would like the only prerequisites to using this ...
1
vote
1answer
59 views
Descriptors in global scope?
The descriptor protocol in Python 2.6 is only defined for class definitions, and thus can only be used by instances.
Is there some equivalent for instrumenting get/set of globals?
I'm trying to ...
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
2answers
455 views
Python Data Descriptor With Pass-through __set__ command
I'm having a bit of an issue solving a problem I'm looking at. I have a specialized set of functions which are going to be in use across a program, which are basically dynamic callables which can ...
0
votes
1answer
188 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
0answers
108 views
model descriptors and django admin list_display
I have a few instances (e.g. act_year_full) of a descriptor class YearWithSurenessDescriptor as attributes of my model Member, and I'd like to include them in the list_display attribute of MemberAdmin ...
0
votes
2answers
236 views
How to get 'type' field descriptor from ctypes Structure or Union field
I have a structure with different datatype fields. I would like to iterate through the structure fields, check the datatype, and set the field with an appropriate value.
I have access to the size and ...
0
votes
2answers
71 views
Descriptor that auto-detects the name of another attribute passed to it?
Can a descriptor auto-detect the name of an object passed to it?
class MyDecorator( object ):
def __init__(self, wrapped):
# Detect that wrapped's name is 'some_attr' here
pass
...
0
votes
1answer
34 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):
...
0
votes
2answers
282 views
Extending appengine's db.Property with caching
I'm looking to implement a property class for appengine, very similar to the existing db.ReferenceProperty. I am implementing my own version because I want some other default return values. My ...
0
votes
2answers
146 views
__get__ can be called by whom. not only __get__ but also __set__ and __del__
my code run wrong,i don't know why
class a:
def __get__(self):
return 'xxx'
def aa(self):
print 'aaaa'
b=a()
print b.get('aa')
Please try to use the code, rather than ...
0
votes
2answers
151 views
Use a Descriptor (EDIT: Not a single decorator) for multiple attributes?
Python 2.5.4. Fairly new to Python, brand new to decorators as of last night. If I have a class with multiple boolean attributes:
class Foo(object):
_bool1 = True
_bool2 = True
_bool3 = ...
0
votes
1answer
662 views
python attribute lookup without any descriptor magic?
I've started to use the python descriptor protocol more extensively in the code I've been writing. Typically, the default python lookup magic is what I want to happen, but sometimes I'm finding I ...