Wildemar Wildenburger wrote: > Thanks for the thorough explanation. But you did mock me with that > "SomeActor.meth is SomeActor.meth"-line, right? ;)
Acually, no: >>> class Descriptor(object): ... def __get__(*args): return object() ... >>> class SomeActor(object): ... meth = Descriptor() ... >>> SomeActor.meth is SomeActor.meth False Peter -- http://mail.python.org/mailman/listinfo/python-list