> You can also try Eclipse + PyDev. It's not the same as Visual Studio, and I
> am not sure about the GUI builder, but I think it's what you want.
I really like Eclipse + Pydev. It is not a GUI builder at all but it
has a nice debugger, code completion and that kind of thing. And its
free!
B
Hello,
I want to set up descriptors at runtine, but it isn't working the way
i would expect. Does anybody know if this is possible? Here is an
example:
class Descriptor(object):
def __init__(self, name) :
self.val=0
self.name = name
def __get__(self, obj, objtype):